Class: Aws::SES::Types::Message

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

Overview

Represents the message to be sent, composed of a subject and a body.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bodyTypes::Body

The message body.

Returns:



2800
2801
2802
2803
2804
2805
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2800

class Message < Struct.new(
  :subject,
  :body)
  SENSITIVE = []
  include Aws::Structure
end

#subjectTypes::Content

The subject of the message: A short summary of the content, which appears in the recipient's inbox.

Returns:



2800
2801
2802
2803
2804
2805
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2800

class Message < Struct.new(
  :subject,
  :body)
  SENSITIVE = []
  include Aws::Structure
end