Email

data class Email(val recipients: List<String>? = null, val subject: String? = null, val body: String? = null)

An object representing an email about to be senta with sendEmail.

Parameters

recipients

the list of recipient emails, or null to leave blank

subject

an optional subject of the email

body

the body of the email

Constructors

Link copied to clipboard
constructor(recipients: List<String>? = null, subject: String? = null, body: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val body: String? = null
Link copied to clipboard
val recipients: List<String>? = null
Link copied to clipboard
val subject: String? = null