EmailMessageWithBody

data class EmailMessageWithBody(    val id: String,     val body: String,     val isHtml: Boolean,     val attachments: List<EmailAttachment>,     val inlineAttachments: List<EmailAttachment>) : Parcelable

Representation of an email message's RFC 822 data used in the Sudo Platform Email SDK.

Constructors

Link copied to clipboard
constructor(id: String, body: String, isHtml: Boolean, attachments: List<EmailAttachment>, inlineAttachments: List<EmailAttachment>)

Properties

Link copied to clipboard

List A list of email message attachments.

Link copied to clipboard

String The email message body.

Link copied to clipboard
val id: String

String Unique identifier of the email message.

Link copied to clipboard

List A list of email message inline attachments.

Link copied to clipboard

Boolean Flag indicating whether the body is formatted as HTML.

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)