CC stands for Carbon Copy.
cc Carbon Copy: this array of Objects contains additional recipient in the format [{"name":"Name to be included", "address":"[email protected]"}, ...] that will get the same message.
| Path | Type | Description |
|---|---|---|
| name | String | The name of the carbon copy recipient |
| address | String | The actual email address of the carbon copy recipient. If provided, must be a well-formed email address and not be blank |
The property name will precede the address.
Assuming you set the following: &#xNAN;"cc":[{"name":"John Doe", "address":"[email protected]"}] ** this will result in a single message to be dispatched to [email protected] and the recipient will read a message that in the "cc" field will contain:
CC : John Doe [email protected]

