Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 528 Bytes

File metadata and controls

26 lines (20 loc) · 528 Bytes

SendX::XTo

Properties

Name Type Description Notes
email String
name String [optional]
cc Array<String> [optional]
bcc Array<String> [optional]
custom_fields Hash<String, String> [optional]

Example

require 'sendx-ruby-sdk'

instance = SendX::XTo.new(
  email: to@example.com,
  name: To Name,
  cc: null,
  bcc: null,
  custom_fields: null
)