Class: Aws::Pinpoint::Types::CampaignEmailMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::CampaignEmailMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass CampaignEmailMessage data as a hash:
{
body: "__string",
from_address: "__string",
html_body: "__string",
title: "__string",
}
The email message configuration.
Instance Attribute Summary collapse
-
#body ⇒ String
The email text body.
-
#from_address ⇒ String
The email address used to send the email from.
-
#html_body ⇒ String
The email html body.
-
#title ⇒ String
The email title (Or subject).
Instance Attribute Details
#body ⇒ String
The email text body.
546 547 548 549 550 551 552 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 546 class CampaignEmailMessage < Struct.new( :body, :from_address, :html_body, :title) include Aws::Structure end |
#from_address ⇒ String
The email address used to send the email from. Defaults to use FromAddress specified in the Email Channel.
546 547 548 549 550 551 552 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 546 class CampaignEmailMessage < Struct.new( :body, :from_address, :html_body, :title) include Aws::Structure end |
#html_body ⇒ String
The email html body.
546 547 548 549 550 551 552 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 546 class CampaignEmailMessage < Struct.new( :body, :from_address, :html_body, :title) include Aws::Structure end |
#title ⇒ String
The email title (Or subject).
546 547 548 549 550 551 552 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 546 class CampaignEmailMessage < Struct.new( :body, :from_address, :html_body, :title) include Aws::Structure end |