Download OpenAPI specification:Download
A simple endpoint to send email messages
Object defining the email message to be sent
subject | string Subject of the email |
html | string String containing the HTML content of the email. Takes precedence over |
htmlurl | string String containing the URL to a file containing the HTML content of the email. Ignored if |
text | string String containing the plain text content of the email. Takes precedence over |
texturl | string String containing the URL to a file containing the plain text content of the email. Ignored if |
object
| |
required | Array of objects (Recipient) Array of |
Array of objects (Recipient) Array of | |
Array of objects (Recipient) Array of | |
Array of objects (Attachment) Array of | |
Array of objects (Placeholder) Array of | |
Array of objects (Config) Array of | |
key required | string API key to authenticate request with |
{- "subject": "string",
- "html": "string",
- "htmlurl": "string",
- "text": "string",
- "texturl": "string",
- "sender": {
- "email": "user@example.com",
- "name": "string"
}, - "recipients": [
- {
- "email": "user@example.com",
- "name": "string"
}
], - "ccs": [
- {
- "email": "user@example.com",
- "name": "string"
}
], - "bccs": [
- {
- "email": "user@example.com",
- "name": "string"
}
], - "attachments": [
- {
- "url": "string",
- "filename": "string",
- "cid": "string"
}
], - "placeholders": [
- {
- "name": "string",
- "value": "string"
}
], - "config": [
- {
- "key": "string"
}
], - "key": "string"
}
{- "status": "string",
- "error": "string"
}