SendEmailMessageInput

data class SendEmailMessageInput(val senderEmailAddressId: String, val emailMessageHeader: InternetMessageFormatHeader, val body: String, val attachments: List<EmailAttachment> = emptyList(), val inlineAttachment: List<EmailAttachment> = emptyList())

Input object containing information required to send an email message.

Constructors

Link copied to clipboard
constructor(senderEmailAddressId: String, emailMessageHeader: InternetMessageFormatHeader, body: String, attachments: List<EmailAttachment> = emptyList(), inlineAttachment: List<EmailAttachment> = emptyList())

Properties

Link copied to clipboard

List List of attached files to be sent with the message. Default is an empty list.

Link copied to clipboard

String The text body of the email message.

Link copied to clipboard
Link copied to clipboard

List List of inline attachments to be sent with the message. Default is an empty list.

Link copied to clipboard

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