SimplifiedEmailMessage

data class SimplifiedEmailMessage(val from: List<String>, val to: List<String>, val cc: List<String>, val bcc: List<String>, val subject: String?, val body: String?, val isHtml: Boolean, val attachments: List<EmailAttachment> = emptyList(), val inlineAttachments: List<EmailAttachment> = emptyList()) : Parcelable

Constructors

Link copied to clipboard
constructor(from: List<String>, to: List<String>, cc: List<String>, bcc: List<String>, subject: String?, body: String?, isHtml: Boolean, attachments: List<EmailAttachment> = emptyList(), inlineAttachments: List<EmailAttachment> = emptyList())

Functions

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

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val body: String?
Link copied to clipboard
val cc: List<String>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val to: List<String>