Class: Aws::Pinpoint::Types::CampaignEmailMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::CampaignEmailMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Specifies the content and “From” address for an email message that’s sent to recipients of a campaign.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#body ⇒ String
The body of the email for recipients whose email clients don’t render HTML content.
-
#from_address ⇒ String
The verified email address to send the email from.
-
#headers ⇒ Array<Types::MessageHeader>
The list of [MessageHeaders] for the email.
-
#html_body ⇒ String
The body of the email, in HTML format, for recipients whose email clients render HTML content.
-
#title ⇒ String
The subject line, or title, of the email.
Instance Attribute Details
#body ⇒ String
The body of the email for recipients whose email clients don’t render HTML content.
2072 2073 2074 2075 2076 2077 2078 2079 2080 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2072 class CampaignEmailMessage < Struct.new( :body, :from_address, :headers, :html_body, :title) SENSITIVE = [] include Aws::Structure end |
#from_address ⇒ String
The verified email address to send the email from. The default address is the FromAddress specified for the email channel for the application.
2072 2073 2074 2075 2076 2077 2078 2079 2080 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2072 class CampaignEmailMessage < Struct.new( :body, :from_address, :headers, :html_body, :title) SENSITIVE = [] include Aws::Structure end |
#headers ⇒ Array<Types::MessageHeader>
The list of [MessageHeaders] for the email. You can have up to 15 MessageHeaders for each email.
2072 2073 2074 2075 2076 2077 2078 2079 2080 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2072 class CampaignEmailMessage < Struct.new( :body, :from_address, :headers, :html_body, :title) SENSITIVE = [] include Aws::Structure end |
#html_body ⇒ String
The body of the email, in HTML format, for recipients whose email clients render HTML content.
2072 2073 2074 2075 2076 2077 2078 2079 2080 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2072 class CampaignEmailMessage < Struct.new( :body, :from_address, :headers, :html_body, :title) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The subject line, or title, of the email.
2072 2073 2074 2075 2076 2077 2078 2079 2080 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2072 class CampaignEmailMessage < Struct.new( :body, :from_address, :headers, :html_body, :title) SENSITIVE = [] include Aws::Structure end |