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. The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent.

IMPORTANT:If you have not yet requested production access to Amazon SES, then you will only be able to send email to and from verified email addresses and domains. For more information, go to the Amazon SES Developer Guide.

The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message.

Amazon SES has a limit on the total number of recipients per message: The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group.

For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the "Managing Your Sending Activity" section of theAmazon SES Developer Guide.

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class SendRawEmailRequest : AmazonWebServiceRequest
Public Class SendRawEmailRequest _
	Inherits AmazonWebServiceRequest
public ref class SendRawEmailRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
SendRawEmailRequest()()()()
Default constructor for a new SendRawEmailRequest object. Callers should use the properties or fluent setter (With...) methods to initialize this object after creating it.
SendRawEmailRequest(RawMessage)
Constructs a new SendRawEmailRequest object. Callers should use the properties or fluent setter (With...) methods to initialize any additional object members.
Destinations
A list of destinations for the message.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
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. Refer to the Amazon SES Developer Guide for more details.
  • Content must be base64-encoded, if MIME requires it.
Source
The identity's email address.
Note:
If you specify the Source parameter, then bounce notifications and complaints will be sent to this email address. This takes precedence over any Return-Path header that you might include in the raw text of the message.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithDestinations(IEnumerable<(Of <<'(String>)>>))
Adds elements to the Destinations collection
WithDestinations(array<String>[]()[][])
Adds elements to the Destinations collection
WithRawMessage(RawMessage)
Sets the RawMessage property
WithSource(String)
Sets the Source property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.SimpleEmail.Model..::..SendRawEmailRequest

See Also