Class: Aws::QConnect::Types::EmailMessageTemplateContentBody
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::EmailMessageTemplateContentBody
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qconnect/types.rb
Overview
The body to use in email messages.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#html ⇒ Types::MessageTemplateBodyContentProvider
The message body, in HTML format, to use in email messages that are based on the message template.
-
#plain_text ⇒ Types::MessageTemplateBodyContentProvider
The message body, in plain text format, to use in email messages that are based on the message template.
Instance Attribute Details
#html ⇒ Types::MessageTemplateBodyContentProvider
The message body, in HTML format, to use in email messages that are based on the message template. We recommend using HTML format for email clients that render HTML content. You can include links, formatted text, and more in an HTML message.
4391 4392 4393 4394 4395 4396 |
# File 'lib/aws-sdk-qconnect/types.rb', line 4391 class EmailMessageTemplateContentBody < Struct.new( :plain_text, :html) SENSITIVE = [] include Aws::Structure end |
#plain_text ⇒ Types::MessageTemplateBodyContentProvider
The message body, in plain text format, to use in email messages that are based on the message template. We recommend using plain text format for email clients that don’t render HTML content and clients that are connected to high-latency networks, such as mobile devices.
4391 4392 4393 4394 4395 4396 |
# File 'lib/aws-sdk-qconnect/types.rb', line 4391 class EmailMessageTemplateContentBody < Struct.new( :plain_text, :html) SENSITIVE = [] include Aws::Structure end |