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
to
string
required

Recipient's email address

Example:

"recipient@example.com"

from
string
required

Sender's name

Example:

"sender@example.com"

subject
string
required

Email subject

Example:

"Test Email"

body
string
required

Email content

Example:

"Hello, this is a test email."

contentType
enum<string>
required

Content type of the email

Available options:
html,
text
Example:

"text"

cc
string

CC email address (only 1 is supported as of now)

Example:

"cc@example.com"

replyTo
string

Reply-to email address

Example:

"reply@example.com"

Response

200
application/json
Email sent successfully
message
string
Example:

"Successfully sent"

crumbs
object
email_id
string

Email ID, used for delivery tracking and analytics

Example:

"em_123abc456def"

Was this page helpful?