Send Email Message Input
data class SendEmailMessageInput(val senderEmailAddressId: 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(senderEmailAddressId: 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
Link copied to clipboard
InternetMessageFormatHeader The email message headers.
Link copied to clipboard
String Identifier of the message being forwarded. Defaults to null.
Link copied to clipboard
List
Link copied to clipboard
String Identifier of the message being replied to. Defaults to null.
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.