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.
2320 2321 2322 2323 2324 2325 2326 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2320 class MessageBody < Struct.new( :html, :message_malformed, :text) SENSITIVE = [] include Aws::Structure end |
#message_malformed ⇒ Boolean
A flag indicating if the email was malformed.
2320 2321 2322 2323 2324 2325 2326 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2320 class MessageBody < Struct.new( :html, :message_malformed, :text) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The plain text body content of the message.
2320 2321 2322 2323 2324 2325 2326 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2320 class MessageBody < Struct.new( :html, :message_malformed, :text) SENSITIVE = [] include Aws::Structure end |