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)


2285
2286
2287
2288
2289
2290
2291
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2285

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)


2285
2286
2287
2288
2289
2290
2291
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2285

class MessageBody < Struct.new(
  :html,
  :message_malformed,
  :text)
  SENSITIVE = []
  include Aws::Structure
end

#textString

The plain text body content of the message.

Returns:

  • (String)


2285
2286
2287
2288
2289
2290
2291
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2285

class MessageBody < Struct.new(
  :html,
  :message_malformed,
  :text)
  SENSITIVE = []
  include Aws::Structure
end