C# Class Amazon.SimpleEmail.Model.Message

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

Show file Open project: scopely/aws-sdk-net Class Usage Examples

Public Methods

Method Description
Message ( ) : System

Default constructor for a new Message object. Callers should use the properties to initialize this object after creating it.

Message ( Content subject, Body body ) : System

Constructs a new Message object. Callers should use the properties initialize any additional object members.

Private Methods

Method Description
IsSetBody ( ) : bool
IsSetSubject ( ) : bool

Method Details

Message() public method

Default constructor for a new Message object. Callers should use the properties to initialize this object after creating it.
public Message ( ) : System
return System

Message() public method

Constructs a new Message object. Callers should use the properties initialize any additional object members.
public Message ( Content subject, Body body ) : System
subject Content The subject of the message: A short summary of the content, which will appear in the recipient's inbox.
body Body The message body.
return System