C# Class Amazon.SimpleEmail.Model.SendRawEmailRequest

Container for the parameters to the SendRawEmail operation.

Sends an email message, with header and content specified by the client. The SendRawEmail action is useful for sending multipart MIME emails, with attachments or inline content.

The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent. For more information, go to the Amazon SES Developer Guide.

Inheritance: Amazon.Runtime.AmazonWebServiceRequest
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
SendRawEmailRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

SendRawEmailRequest ( RawMessage rawMessage ) : System

Instantiates SendRawEmailRequest with the parameterized properties

Private Methods

Method Description
IsSetConfigurationSetName ( ) : bool
IsSetDestinations ( ) : bool
IsSetFromArn ( ) : bool
IsSetRawMessage ( ) : bool
IsSetReturnPathArn ( ) : bool
IsSetSource ( ) : bool
IsSetSourceArn ( ) : bool
IsSetTags ( ) : bool

Method Details

SendRawEmailRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public SendRawEmailRequest ( ) : System
return System

SendRawEmailRequest() public method

Instantiates SendRawEmailRequest with the parameterized properties
public SendRawEmailRequest ( RawMessage rawMessage ) : System
rawMessage RawMessage The raw text of the message. The client is responsible for ensuring the following:
  • Message must contain a header and a body, separated by a blank line.
  • All required header fields must be present.
  • Each part of a multipart MIME message must be formatted properly.
  • MIME content types must be among those supported by Amazon SES. For more information, go to the Amazon SES Developer Guide.
  • Must be base64-encoded.
return System