Class: Aws::SES::Types::Body
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::Body
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents the body of the message. You can specify text, HTML, or both. If you use both, then the message should display correctly in the widest variety of email clients.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#html ⇒ Types::Content
The content of the message, in HTML format.
-
#text ⇒ Types::Content
The content of the message, in text format.
Instance Attribute Details
#html ⇒ Types::Content
The content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted text, and much more in an HTML message.
88 89 90 91 92 93 |
# File 'lib/aws-sdk-ses/types.rb', line 88 class Body < Struct.new( :text, :html) SENSITIVE = [] include Aws::Structure end |
#text ⇒ Types::Content
The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile devices).
88 89 90 91 92 93 |
# File 'lib/aws-sdk-ses/types.rb', line 88 class Body < Struct.new( :text, :html) SENSITIVE = [] include Aws::Structure end |