Class: Aws::SES::Types::Template
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::Template
- Defined in:
- gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb
Overview
The content of the email, composed of a subject line and either an HTML part or a text-only part.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#html_part ⇒ String
The HTML body of the email.
-
#subject_part ⇒ String
The subject line of the email.
-
#template_name ⇒ String
The name of the template.
-
#text_part ⇒ String
The email body that is visible to recipients whose email clients do not display HTML content.
Instance Attribute Details
#html_part ⇒ String
The HTML body of the email.
4870 4871 4872 4873 4874 4875 4876 4877 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4870 class Template < Struct.new( :template_name, :subject_part, :text_part, :html_part) SENSITIVE = [] include Aws::Structure end |
#subject_part ⇒ String
The subject line of the email.
4870 4871 4872 4873 4874 4875 4876 4877 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4870 class Template < Struct.new( :template_name, :subject_part, :text_part, :html_part) SENSITIVE = [] include Aws::Structure end |
#template_name ⇒ String
The name of the template. You use this name when you send email
using the SendTemplatedEmail
or SendBulkTemplatedEmail
operations.
4870 4871 4872 4873 4874 4875 4876 4877 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4870 class Template < Struct.new( :template_name, :subject_part, :text_part, :html_part) SENSITIVE = [] include Aws::Structure end |
#text_part ⇒ String
The email body that is visible to recipients whose email clients do not display HTML content.
4870 4871 4872 4873 4874 4875 4876 4877 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4870 class Template < Struct.new( :template_name, :subject_part, :text_part, :html_part) SENSITIVE = [] include Aws::Structure end |