The email object represents an email that has been sent to an email address. You can only send an email to email addresses that have been verified by a user. Only recommended for transactional emails.
Create and send an email to the supplied email address ID.
Required parameters
from_email_name | string The email name portion of the sending email address.
|
subject | string The subject of the email. |
body | string The body of the email. |
email_address_id | string or null The ID of the email address to send to. |
Success
Request was not successful
Authentication invalid
Authorization invalid
Resource not found
Invalid request parameters
{- "from_email_name": "string",
- "subject": "string",
- "body": "string",
- "email_address_id": "string"
}
{- "object": "email",
- "id": "string",
- "slug": "string",
- "from_email_name": "string",
- "email_address_id": "string",
- "to_email_address": "string",
- "user_id": "string",
- "subject": "string",
- "body": "string",
- "body_plain": "string",
- "status": "string",
- "data": { },
- "delivered_by_clerk": true
}