EmailMessageWithBody

public struct EmailMessageWithBody

Representation of an email message with body attachments used in the Sudo Platform Email SDK.

  • id

    Unique identifier of the email message.

    Declaration

    Swift

    public let id: String
  • The email message body.

    Declaration

    Swift

    public let body: String
  • A list of email message attachments.

    Declaration

    Swift

    public let attachments: [EmailAttachment]
  • A list of email message inline attachments.

    Declaration

    Swift

    public let inlineAttachments: [EmailAttachment]
  • Initialize an instance of EmailMessageWithBody.

    Declaration

    Swift

    public init(id: String, body: String, attachments: [EmailAttachment], inlineAttachments: [EmailAttachment])