SendMaskedEmailMessageInput

data class SendMaskedEmailMessageInput(val senderEmailMaskId: String, val emailMessageHeader: InternetMessageFormatHeader, val body: String, val attachments: List<EmailAttachment> = emptyList(), val inlineAttachment: List<EmailAttachment> = emptyList(), var replyingMessageId: String? = null, val forwardingMessageId: String? = null)

Input object containing information required to send an email message.

Constructors

Link copied to clipboard
constructor(senderEmailMaskId: String, emailMessageHeader: InternetMessageFormatHeader, body: String, attachments: List<EmailAttachment> = emptyList(), inlineAttachment: List<EmailAttachment> = emptyList(), replyingMessageId: String? = null, forwardingMessageId: String? = null)

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

String Identifier of the message being forwarded. Defaults to null.

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 message being replied to. Defaults to null.

Link copied to clipboard

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