Email Plus uses an internal object called emailAddress to represent senders and recipient.
emailAddress Object Definition
| 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]

