Amazon SES Sample
This is a sample that demonstrates how to send email using SES.
Prerequisites
- You must have a valid Amazon Web Services developer account.
- Requires the AWS SDK for .NET and the AWS SDK for .NET Extensions. For more information on the AWS SDK for .NET, see http://aws.amazon.com/sdkfornet.
- You must be signed up to use Amazon SES. For more information on Amazon SES, see http://aws.amazon.com/ses/.
Running the Sample
The basic steps for running the Amazon SES sample are:
- Open the
AmazonSesSample.sln file in Visual Studio.
- Open the
App.config file.
- Enter your Access Key ID and Secret Access Key:
<add key="AWSAccessKey" value="<Your Access Key ID>"/>
<add key="AWSSecretKey" value="<Your Secret Access Key>"/>
- Save the file.
- Set proper values for the variables
senderAddress and receiverAddress.
- Run the sample in Debug mode by typing F5.