API Docs / Schemas / EngagementEmailDto

EngagementEmailDto

Represents an email sent for an engagement

Properties

Name Type Description
messageIdstring

The message ID from the email service

The message ID from the email service

sentDatestring

The date when the email was sent

The date when the email was sent

subjectstring

The email subject line

The email subject line

toRecipientsarray of string

List of recipient email addresses

List of recipient email addresses

statusstring

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"
}