Interface EmailMessageWithBody

Representation of an email message's body and attachments in the Sudo Platform Email SDK

EmailMessageWithBody

interface EmailMessageWithBody {
    attachments: EmailAttachment[];
    body: string;
    id: string;
    inlineAttachments: EmailAttachment[];
}

Properties

attachments: EmailAttachment[]

An array of the EmailAttachments associated with the email message

body: string

The body of the email message

id: string

The unique identifier of the email message

inlineAttachments: EmailAttachment[]

An array of the inline EmailAttachments associated with the email message