Request Parameters
Body Parameters
Field | Type | Required | Description |
---|---|---|---|
fromAddress | string | Yes | Sender's email address |
fromName | string | No | Sender's display name |
replyToAddress | string | No | Reply-to email address |
replyToName | string | No | Reply-to display name |
toAddresses | array | Yes | List of primary recipients |
ccs | array | No | List of CC recipients |
bccs | array | No | List of BCC recipients |
subject | string | Yes | Email subject line |
htmlBody | string | Yes | HTML email content |
textBody | string | Yes | Plain text email content |
attachments | array | No | List of file attachments |
customerReference | string | No | Your reference for tracking |
Objects
Recipient Object (toAddresses)
Field | Type | Required | Description |
---|---|---|---|
toAddress | string | Yes | Recipient email address |
toName | string | Yes | Recipient display name |
CC/BCC Object
Field | Type | Required | Description |
---|---|---|---|
emailAddress | string | Yes | Recipient email address |
Attachment Object
Field | Type | Required | Description |
---|---|---|---|
fileName | string | Yes | Name of the file with extension |
data | string | Yes | Base64 encoded file content |
contentType | string | Yes | MIME type of the file |
contentId | string | No | Content ID for inline images |
Supported File Types
Category | Extensions | Max Size |
---|---|---|
Images | .jpg, .jpeg, .png | 25 MB |
Documents | .pdf, .doc, .docx | 25 MB |
Archives | .zip | 25 MB |
Updated 2 days ago