Package-level declarations

Types

Link copied to clipboard
data class Content(val data: String, val charset: Charset = Charset.defaultCharset())

Represents the content of the email.

Link copied to clipboard
data class Destination(val to: List<String>, val cc: List<String> = emptyList(), val bcc: List<String> = emptyList())

Represents the destination of the email.

Link copied to clipboard
interface Message

Represents the content of the email message.

Link copied to clipboard
interface ReturnPath

Represents the return path for the email.

Link copied to clipboard

Represents a request to send an email. It can be either a single email or a bulk templated email.

Link copied to clipboard
interface Source

Represents the source of the email.

Link copied to clipboard
data class TemplatedDestination(val replacementData: String, val destination: Destination, val replacementTags: Map<String, String> = emptyMap())

Represents the destination of a templated email in a bulk sending request.