EmailBroadcastPreviewDto
Preview of a broadcast email rendered for a specific sample client, with resolved recipients.
Returned before sending so the user can review what will be sent.
Properties
| Name | Type | Description |
|---|---|---|
| subject | string | Rendered subject line with Liquid tokens resolved for the sample client. |
Rendered subject line with Liquid tokens resolved for the sample client. | ||
| bodyHtml | string | Rendered body HTML with header/footer/theme applied and Liquid tokens resolved for the sample client. |
Rendered body HTML with header/footer/theme applied and Liquid tokens resolved for the sample client. | ||
| toRecipients | array of EmailPreviewRecipientDto | Resolved To recipients for the sample client. |
Resolved To recipients for the sample client. | ||
| ccRecipients | array of EmailPreviewRecipientDto | Resolved CC recipients for the sample client. |
Resolved CC recipients for the sample client. | ||
| bccRecipients | array of EmailPreviewRecipientDto | Resolved BCC recipients for the sample client. |
Resolved BCC recipients for the sample client. | ||
JSON Example
{
"subject": "string",
"bodyHtml": "string",
"toRecipients": [
{
"name": "...",
"email": "..."
}
],
"ccRecipients": [
{
"name": "...",
"email": "..."
}
],
"bccRecipients": [
{
"name": "...",
"email": "..."
}
]
}