Interface UpdateDraftEmailMessageInput

Input for SudoEmailClient.updateDraftEmailMessage.

UpdateDraftEmailMessageInput

interface UpdateDraftEmailMessageInput {
    id: string;
    rfc822Data: ArrayBuffer;
    senderEmailAddressId: string;
}

Properties

id: string

The identifier of the draft email message to update.

rfc822Data: ArrayBuffer

Email message data formatted under the RFC 6854. This will completely replace the existing data.

senderEmailAddressId: string

The identifier of the email address used to send the email. The identifier must match the identifier of the email address of the from field in the RFC 6854 data.