Class: Aws::SES::Types::Message
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::Message
- Defined in:
- gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb
Overview
Note:
When making an API call, you may pass Message data as a hash:
{
subject: { # required
data: "MessageData", # required
charset: "Charset",
},
body: { # required
text: {
data: "MessageData", # required
charset: "Charset",
},
html: {
data: "MessageData", # required
charset: "Charset",
},
},
}
Represents the message to be sent, composed of a subject and a body.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#body ⇒ Types::Body
The message body.
-
#subject ⇒ Types::Content
The subject of the message: A short summary of the content, which will appear in the recipient's inbox.
Instance Attribute Details
#body ⇒ Types::Body
The message body.
3309 3310 3311 3312 3313 3314 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3309 class Message < Struct.new( :subject, :body) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ Types::Content
The subject of the message: A short summary of the content, which will appear in the recipient's inbox.
3309 3310 3311 3312 3313 3314 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3309 class Message < Struct.new( :subject, :body) SENSITIVE = [] include Aws::Structure end |