AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
There are several important points to know about SendEmail
:
Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.dll
Version: (assembly version)
public class SendEmailRequest : AmazonSimpleEmailServiceRequest IRequestEvents
The SendEmailRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
SendEmailRequest() | Empty constructor used to set properties independently even when a simple constructor is available |
![]() |
SendEmailRequest(string, Destination, Message) | Instantiates SendEmailRequest with the parameterized properties |
Name | Type | Description | |
---|---|---|---|
![]() |
Destination | Amazon.SimpleEmail.Model.Destination |
Gets and sets the property Destination.
The destination for this email, composed of To:, CC:, and BCC: fields. |
![]() |
Message | Amazon.SimpleEmail.Model.Message |
Gets and sets the property Message.
The message to be sent. |
![]() |
ReplyToAddresses | System.Collections.Generic.List<System.String> |
Gets and sets the property ReplyToAddresses.
The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply. |
![]() |
ReturnPath | System.String |
Gets and sets the property ReturnPath.
The email address to which bounces and complaints are to be forwarded when feedback
forwarding is enabled. If the message cannot be delivered to the recipient, then an
error message will be returned from the recipient's ISP; this message will then be
forwarded to the email address specified by the |
![]() |
ReturnPathArn | System.String |
Gets and sets the property ReturnPathArn.
This parameter is used only for sending authorization. It is the ARN of the identity
that is associated with the sending authorization policy that permits you to use the
email address specified in the
For example, if the owner of For more information about sending authorization, see the Amazon SES Developer Guide. |
![]() |
Source | System.String |
Gets and sets the property Source.
The email address that is sending the email. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. For information about verifying identities, see the Amazon SES Developer Guide.
If you are sending on behalf of another user and have been permitted to do so by a
sending authorization policy, then you must also specify the
In all cases, the email address must be 7-bit ASCII. If the text must contain any
other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of
a literal string. MIME encoded-word syntax uses the following form: |
![]() |
SourceArn | System.String |
Gets and sets the property SourceArn.
This parameter is used only for sending authorization. It is the ARN of the identity
that is associated with the sending authorization policy that permits you to send
for the email address specified in the
For example, if the owner of For more information about sending authorization, see the Amazon SES Developer Guide. |
This example shows how to send an email.
var sesClient = new AmazonSimpleEmailServiceClient(); var dest = new Destination { ToAddresses = new List<string>() { "janedoe@example.com" }, CcAddresses = new List<string>() { "richarddoe@example.com" } }; var from = "johndoe@example.com"; var subject = new Content("You're invited to the meeting"); var body = new Body(new Content("Please join us Monday at 7:00 PM.")); var msg = new Message(subject, body); var request = new SendEmailRequest { Destination = dest, Message = msg, Source = from }; sesClient.SendEmail(request);
.NET Framework:
Supported in: 4.5, 4.0, 3.5
.NET for Windows Store apps:
Supported in: Windows 8.1, Windows 8
.NET for Windows Phone:
Supported in: Windows Phone 8.1, Windows Phone 8