POST
/
send
/
email
curl --request POST \
  --url https://api.contiguity.co/send/email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "to": "recipient@example.com",
  "from": "sender@example.com",
  "subject": "Test Email",
  "body": "Hello, this is a test email.",
  "contentType": "text",
  "cc": "cc@example.com",
  "replyTo": "reply@example.com"
}'
{
  "message": "Successfully sent",
  "crumbs": {
    "plan": "payg",
    "quota": 12,
    "type": "email",
    "ad": false
  },
  "email_id": "em_123abc456def"
}

Authorizations

Authorization
string
header
required

Authentication using a Bearer Token. Specify Authorization: Token YOUR_TOKEN. Bearer is allowed.

Body

application/json

Response

200
application/json

Email sent successfully

The response is of type object.