Class: Aws::MailManager::Types::MessageBody

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#htmlString

The HTML body content of the message.

Returns:

  • (String)


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_malformedBoolean

A flag indicating if the email was malformed.

Returns:

  • (Boolean)


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

#textString

The plain text body content of the message.

Returns:

  • (String)


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