class Aws::SES::Types::Message

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

@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",
        },
      },
    }

@!attribute [rw] subject

The subject of the message: A short summary of the content, which
will appear in the recipient's inbox.
@return [Types::Content]

@!attribute [rw] body

The message body.
@return [Types::Body]

@see docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/Message AWS API Documentation

Constants

SENSITIVE