Class: Aws::MailManager::Types::MessageBody
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::MessageBody
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
The textual body content of an email message.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#html ⇒ String
The HTML body content of the message.
-
#message_malformed ⇒ Boolean
A flag indicating if the email was malformed.
-
#text ⇒ String
The plain text body content of the message.
Instance Attribute Details
#html ⇒ String
The HTML body content of the message.
2358 2359 2360 2361 2362 2363 2364 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2358 class MessageBody < Struct.new( :html, :message_malformed, :text) SENSITIVE = [] include Aws::Structure end |
#message_malformed ⇒ Boolean
A flag indicating if the email was malformed.
2358 2359 2360 2361 2362 2363 2364 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2358 class MessageBody < Struct.new( :html, :message_malformed, :text) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The plain text body content of the message.
2358 2359 2360 2361 2362 2363 2364 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2358 class MessageBody < Struct.new( :html, :message_malformed, :text) SENSITIVE = [] include Aws::Structure end |