Skip to main content
POST
Send Email
from
string
required
Sender email address. Must be from a verified domain. Can include a name: "John Doe <john@yourdomain.com>".
to
string | string[]
required
Recipient email address(es).
subject
string
required
Email subject line.
html
string
HTML content of the email. Required unless text or template_id is provided.
text
string
Plain text content of the email.
template_id
string
UUID of a saved template to use. If provided, the template’s content will be used.
template_data
object
Variables to replace in the template. Example: {"first_name": "John", "order_id": "12345"}.
cc
string | string[]
CC recipient(s).
bcc
string | string[]
BCC recipient(s).
reply_to
string
Reply-to email address.
priority
string
Email priority: high (OTP/transactional, fastest delivery), normal (default), or low (bulk/marketing).
attachments
array
Array of attachments. Each attachment has filename, content (base64), and content_type.
headers
object
Custom email headers.
tags
array
Custom tags for analytics. Each tag has name and value.
scheduled_for
string
ISO 8601 datetime for scheduled sending.
tracking
object
Control email tracking behavior.

Request

Response

200