EmailMessageWithBody
public struct EmailMessageWithBody
Representation of an email message with body attachments used in the Sudo Platform Email SDK.
-
Unique identifier of the email message.
Declaration
Swift
public let id: String
-
The email message body.
Declaration
Swift
public let body: String
-
Flag indicating whether the body is formatted as HTML.
Declaration
Swift
public let isHtml: Bool
-
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, isHtml: Bool, attachments: [EmailAttachment], inlineAttachments: [EmailAttachment])