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