The email object

Represents an email associated with a communication

{
  "to": [
    "[email protected]"
  ],
  "from": "[email protected]",
  "cc": [
    "[email protected]"
  ],
  "subject": "Check <> Example Coffee",
  "no_reply": false
}

Attribute

Description

to array of strings

Email address of the recipient of the email message.

from
string

Sender of the email.

cc
array of strings

List of emails copied onto email message.

subject
string

Subject line of the email.

no_reply
boolean

Whether the email is no-reply or not.