Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 577 Bytes

File metadata and controls

22 lines (16 loc) · 577 Bytes

ElasticEmail::TransactionalRecipient

Properties

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]

Example

require 'ElasticEmail'

instance = ElasticEmail::TransactionalRecipient.new(
  to: null,
  cc: null,
  bcc: null
)