Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

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:


259
260
261
262
263
264
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 259

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:


259
260
261
262
263
264
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 259

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