Class: Aws::PinpointEmail::Types::Body

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/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:



76
77
78
79
80
81
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 76

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:



76
77
78
79
80
81
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 76

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