Class: Aws::SESV2::Types::Body

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb

Overview

Represents the body of the email message.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#htmlTypes::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.

Returns:



244
245
246
247
248
249
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 244

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

#textTypes::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.

Returns:



244
245
246
247
248
249
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 244

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