SendEmailMessageInput

public struct SendEmailMessageInput : Equatable

Input object containing information required to send an email message.

  • 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.

    Declaration

    Swift

    public let senderEmailAddressId: String
  • The email message headers.

    Declaration

    Swift

    public let emailMessageHeader: InternetMessageFormatHeader
  • The text body of the email message.

    Declaration

    Swift

    public let body: String
  • List of attached files to be sent with the message. Default is an empty list.

    Declaration

    Swift

    public let attachments: [EmailAttachment]
  • List of inline attachments to be sent with the message. Default is an empty list.

    Declaration

    Swift

    public let inlineAttachments: [EmailAttachment]