To is an array of emailAddresses Objects that contain a name and an address property.
to An array of objects indicating message recipient(s) in format {[{"name":"Recipient Name","address":"recipient_email_address"} ,...]}
| Path | Type | Description |
|---|---|---|
| name | String | The name of the standard recipient |
| address | String (email address) | The actual email address of the standard recipient. Must be a well-formed email address. |
The property name will precede the address.
Assuming you set the following: &#xNAN;"to":[{**"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 "to" field will contain:
To : John Doe [email protected]

