Send an email
Sends an email via the connected email account that owns the from address. Currently supports new sends only; replies and forwards are not yet supported.
Supports idempotency via the Idempotency-Key header.
Required scope: emails:create
Rate limit category: Write
post/v1/emails/send
Headers
Lightfield-Version'2026-03-01' required
Required API version header. Requests may error without it.
Request body
Example request
{
"from": "sales@acme.com",
"to": [
"lead@example.com"
],
"cc": [
"lead@example.com"
],
"bcc": [
"lead@example.com"
],
"subject": "Following up on our chat",
"messageBody": {
"contentType": "HTML",
"content": "<p>Hi there,</p><p>Following up on our chat earlier this week.</p>"
},
"attachments": [
"file_01abc2def3ghi4jkl5mno6pqr"
]
}Response
OK