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.
3951 3952 3953 3954 3955 3956 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3951 class EmailMessageTemplateContentBody < Struct.new( :html, :plain_text) 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.
3951 3952 3953 3954 3955 3956 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3951 class EmailMessageTemplateContentBody < Struct.new( :html, :plain_text) SENSITIVE = [] include Aws::Structure end |