SimpleEmail

public struct SimpleEmail : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The body of the email message, in HTML format. We recommend using HTML format for email clients that render HTML content. You can include links, formatted text, and more in an HTML message.

    Declaration

    Swift

    public let htmlPart: SimpleEmailPart?
  • The subject line, or title, of the email.

    Declaration

    Swift

    public let subject: SimpleEmailPart?
  • The body of the email message, in plain text format. We recommend using plain text format for email clients that don’t render HTML content and clients that are connected to high-latency networks, such as mobile devices.

    Declaration

    Swift

    public let textPart: SimpleEmailPart?
  • Undocumented

    Declaration

    Swift

    public init(htmlPart: SimpleEmailPart? = nil, subject: SimpleEmailPart? = nil, textPart: SimpleEmailPart? = nil)