For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send Bulk Email

Send bulk email

POST /external/v1/transactional-email/send/bulk

Send Bulk Transactional Email

Headers

Name
Value

Content-Type

application/json

X-Transactional-Key

cte_xxxxxxxxxxxx

Body

{
  "emails": [
    {
      "to_email": "user@example.com",
      "subject": "string",
      "html_content": "string",
      "text_content": "string",
      "template_uid": "string",
      "to_name": "string",
      "cc": [
        "user@example.com"
      ],
      "bcc": [
        "user@example.com"
      ],
      "from_email": "user@example.com",
      "from_name": "string",
      "reply_to": "user@example.com",
      "email_type": "custom",
      "category": "string",
      "merge_data": {
        "additionalProp1": "string",
        "additionalProp2": "string",
        "additionalProp3": "string"
      },
      "extra_metadata": {
        "additionalProp1": {}
      }
    }
  ]
}

Response

Last updated