Class: Aws::SESV2::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::Destination
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
An object that describes the recipients for an email.
<note markdown=“1”> Amazon SES does not support the SMTPUTF8 extension, as described in [RFC6531]. For this reason, the *local part* of a destination email address (the part of the email address that precedes the @ sign) may only contain [7-bit ASCII characters]. If the *domain part* of an address (the part after the @ sign) contains non-ASCII characters, they must be encoded using Punycode, as described in [RFC3492].
</note>
[1]: tools.ietf.org/html/rfc6531 [2]: en.wikipedia.org/wiki/Email_address#Local-part [3]: tools.ietf.org/html/rfc3492.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bcc_addresses ⇒ Array<String>
An array that contains the email addresses of the “BCC” (blind carbon copy) recipients for the email.
-
#cc_addresses ⇒ Array<String>
An array that contains the email addresses of the “CC” (carbon copy) recipients for the email.
-
#to_addresses ⇒ Array<String>
An array that contains the email addresses of the “To” recipients for the email.
Instance Attribute Details
#bcc_addresses ⇒ Array<String>
An array that contains the email addresses of the “BCC” (blind carbon copy) recipients for the email.
1748 1749 1750 1751 1752 1753 1754 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1748 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end |
#cc_addresses ⇒ Array<String>
An array that contains the email addresses of the “CC” (carbon copy) recipients for the email.
1748 1749 1750 1751 1752 1753 1754 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1748 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end |
#to_addresses ⇒ Array<String>
An array that contains the email addresses of the “To” recipients for the email.
1748 1749 1750 1751 1752 1753 1754 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1748 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end |