Class: Aws::QConnect::Types::EmailMessageTemplateContentBody
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::EmailMessageTemplateContentBody
- Defined in:
- gems/aws-sdk-qconnect/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.
4451 4452 4453 4454 4455 4456 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4451 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.
4451 4452 4453 4454 4455 4456 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4451 class EmailMessageTemplateContentBody < Struct.new( :plain_text, :html) SENSITIVE = [] include Aws::Structure end |