EmailMessage

public struct EmailMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The body of the email message.

    Declaration

    Swift

    public let body: String?
  • The email address to forward bounces and complaints to, if feedback forwarding is enabled.

    Declaration

    Swift

    public let feedbackForwardingAddress: String?
  • The verified email address to send the email message from. The default value is the FromAddress specified for the email channel.

    Declaration

    Swift

    public let fromAddress: String?
  • The email message, represented as a raw MIME message.

    Declaration

    Swift

    public let rawEmail: RawEmail?
  • The reply-to email address(es) for the email message. If a recipient replies to the email, each reply-to address receives the reply.

    Declaration

    Swift

    public let replyToAddresses: [String]?
  • The email message, composed of a subject, a text part, and an HTML part.

    Declaration

    Swift

    public let simpleEmail: SimpleEmail?
  • The default message variables to use in the email message. You can override the default variables with individual address variables.

    Declaration

    Swift

    public let substitutions: [String : [String]]?
  • Undocumented

    Declaration

    Swift

    public init(body: String? = nil, feedbackForwardingAddress: String? = nil, fromAddress: String? = nil, rawEmail: RawEmail? = nil, replyToAddresses: [String]? = nil, simpleEmail: SimpleEmail? = nil, substitutions: [String : [String]]? = nil)