POST
/
email
curl --request POST \
  --url https://api.open.cx/email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "from_email": "jsmith@example.com",
  "recipients": [
    {
      "to_email": "jsmith@example.com",
      "email_body": "<string>",
      "email_subject": "<string>",
      "email_sender_name": "<string>",
      "email_is_transactional": true
    }
  ],
  "delay_in_minutes": 1,
  "fallback_email_subject": "<string>",
  "fallback_email_sender_name": "<string>",
  "fallback_email_body": "<string>"
}'
This response has no body data.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json