The email object

Represents an email associated with a communication

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

AttributeDescription
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.
reply_to
string
The email where replies are sent. If not set by partner, this is the from field.
subject
string
Subject line of the email.
no_reply
boolean
Whether the reply_to email address accepts replies.