| Name | Type | Description | Notes |
|---|---|---|---|
| to | Array<String> | List of recipients (visible to others) | |
| cc | Array<String> | List of Carbon Copy recipients (visible to others) | [optional] |
| bcc | Array<String> | List of Blind Carbon Copy recipients (hidden from other recipients) | [optional] |
require 'ElasticEmail'
instance = ElasticEmail::TransactionalRecipient.new(
to: null,
cc: null,
bcc: null
)