Class: Aws::SESV2::Types::EmailTemplateContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::EmailTemplateContent
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
The content of the email, composed of a subject line, an HTML part, and a text-only part.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#html ⇒ String
The HTML body of the email.
-
#subject ⇒ String
The subject line of the email.
-
#text ⇒ String
The email body that will be visible to recipients whose email clients do not display HTML.
Instance Attribute Details
#html ⇒ String
The HTML body of the email.
2173 2174 2175 2176 2177 2178 2179 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2173 class EmailTemplateContent < Struct.new( :subject, :text, :html) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ String
The subject line of the email.
2173 2174 2175 2176 2177 2178 2179 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2173 class EmailTemplateContent < Struct.new( :subject, :text, :html) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The email body that will be visible to recipients whose email clients do not display HTML.
2173 2174 2175 2176 2177 2178 2179 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2173 class EmailTemplateContent < Struct.new( :subject, :text, :html) SENSITIVE = [] include Aws::Structure end |