EmailMessage interface
Message payload for sending an email
Properties
| attachments | List of attachments. Please note that we limit the total size of an email request (which includes attachments) to 10MB. |
| content | Email content to be sent. |
| disable |
Indicates whether user engagement tracking should be disabled for this request if the resource-level user engagement tracking setting was already enabled in the control plane. |
| headers | Custom email headers to be passed. |
| recipients | Recipients for the email. |
| reply |
Email addresses where recipients' replies will be sent to. |
| sender |
Sender email address from a verified domain. |
Property Details
attachments
List of attachments. Please note that we limit the total size of an email request (which includes attachments) to 10MB.
attachments?: EmailAttachment[]
Property Value
content
disableUserEngagementTracking
Indicates whether user engagement tracking should be disabled for this request if the resource-level user engagement tracking setting was already enabled in the control plane.
disableUserEngagementTracking?: boolean
Property Value
boolean
headers
Custom email headers to be passed.
headers?: {[propertyName: string]: string}
Property Value
{[propertyName: string]: string}
recipients
replyTo
Email addresses where recipients' replies will be sent to.
replyTo?: EmailAddress[]
Property Value
senderAddress
Sender email address from a verified domain.
senderAddress: string
Property Value
string