Request Parameters
Body Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| from | Address | Yes | Sender's email address and name |
| replyTo | Address | No | Reply-to email address and name |
| to | Address[] | Yes | List of primary recipients |
| cc | Address[] | No | List of CC recipients |
| bcc | Address[] | No | List of BCC recipients |
| subject | string | Yes | Email subject line |
| html | string | Yes (html or text) | HTML email content |
| text | string | Yes (html or text) | Plain text email content |
| attachments | Attachment[] | No | List of file attachments |
| customerReference | string | No | Your reference for tracking |
Objects
Address
| Field | Type | Required | Description |
|---|---|---|---|
| string | Yes | Email address | |
| name | string | No (Required for From object) | Display name |
Attachment
| Field | Type | Required | Description |
|---|---|---|---|
| fileName | string | Yes | Name of the file with extension |
| content | 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 11 days ago