Amazon.SimpleEmail.Model.SendRawEmailRequest.SendRawEmailRequest C# (CSharp) Method

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
        public SendRawEmailRequest(RawMessage rawMessage)
        {
            _rawMessage = rawMessage;
        }

Same methods

SendRawEmailRequest::SendRawEmailRequest ( ) : System