EngagementEmailDto
Represents an email sent for an engagement
Properties
| Name | Type | Description |
|---|---|---|
| messageId | string | The message ID from the email service |
The message ID from the email service | ||
| sentDate | string | The date when the email was sent |
The date when the email was sent | ||
| subject | string | The email subject line |
The email subject line | ||
| toRecipients | array of string | List of recipient email addresses |
List of recipient email addresses | ||
| status | string | The status of the email (e.g., Sent, Delivered, Failed) |
The status of the email (e.g., Sent, Delivered, Failed) | ||
JSON Example
{
"messageId": "00000000-0000-0000-0000-000000000000",
"sentDate": "2024-01-01T00:00:00Z",
"subject": "string",
"toRecipients": [
"string"
],
"status": "string"
}