Download OpenAPI specification:Download
A simple endpoint to send email messages
JSON 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 (but still validated) 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 (but still validated) if |
Array of objects (Recipient) Array of | |
Array of objects (Recipient) Array of | |
Array of objects (Recipient) Array of | |
Array of objects (Attachment) Array of | |
key | string API key to authenticate request with |
{- "subject": "string",
- "html": "string",
- "htmlurl": "string",
- "text": "string",
- "texturl": "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"
}
], - "key": "string"
}
{- "status": "string",
- "error": "string"
}