v1
latestOpenAPI 3.1.02026-07-24700259.3 KBEMAILS
Send a standard email
Send an email by passing a JSON email object
post/email/send
Request body
Example request
{
"to": [
"Jane Jones <jane@example.com>"
],
"sender": "John Smith <john@example.com>",
"subject": "My Test Email",
"html_body": "<h1>Test <img src=\"cid:mypicture.jpg\" /></h1>",
"text_body": "Test",
"attachments": [
{
"filename": "report.pdf",
"mimetype": "application/pdf",
"fileblob": "bm90IGFjdHVhbGx5IGEgcGRm..."
}
],
"inlines": [
{
"filename": "mypicture.jpg",
"mimetype": "image/jpeg",
"url": "https://myserver.com/mypicture.jpg"
}
],
"schedule": "2025-09-10 13:15:00 +1200"
}Response
Email sent
Example response
{
"request_id": "aa253464-0bd0-467a-b24b-6159dcd7be60",
"data": {
"succeeded": 1,
"email_id": "1u0SwL-B9zBpi9ffUq-JAB2",
"schedule_id": "caa928f4-24ec-4a68-bcfc-1fd2596342f0"
}
}