Class: Aws::PinpointEmail::Types::Body
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::Body
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointemail/types.rb
Overview
Represents the body of the email message.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#html ⇒ Types::Content
An object that represents the version of the message that is displayed in email clients that support HTML.
-
#text ⇒ Types::Content
An object that represents the version of the message that is displayed in email clients that don’t support HTML, or clients where the recipient has disabled HTML rendering.
Instance Attribute Details
#html ⇒ Types::Content
An object that represents the version of the message that is displayed in email clients that support HTML. HTML messages can include formatted text, hyperlinks, images, and more.
76 77 78 79 80 81 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 76 class Body < Struct.new( :text, :html) SENSITIVE = [] include Aws::Structure end |
#text ⇒ Types::Content
An object that represents the version of the message that is displayed in email clients that don’t support HTML, or clients where the recipient has disabled HTML rendering.
76 77 78 79 80 81 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 76 class Body < Struct.new( :text, :html) SENSITIVE = [] include Aws::Structure end |