How To Setup AWS SES: A Step-By-Step Guide

Setup AWS SES

In this blog, I am going to setup AWS SES for you.

The necessity of email notifications is very important, we all receive emails each day for various purposes, like promotion-related emails, newsletters, application updates, authentication emails, etc.

If you are a person who is looking for this kind of requirement and also want to send hundreds of emails each day then you need an email service.

In the cloud environment, AWS provides a service called Simple Email Service (SES), which is capable of sending and receiving emails in a pay-as-you-go manner.

AWS SES Workflow

AWS SES Workflow

Step 1: Create Identity for SES

You can create an SES service with your email address as the identity, but email has some limitations, so providing a valid domain name is recommended.

In this setup, I am using a valid domain name devopsproject.dev, which is hosted in Route53.

Open the AWS console and navigate to SES.

aws ses dashboard

On the next window, under the configuration section, select the verified identities tab.

aws ses identity creation

A new window will open, and you can see two options, which are Domain and Email address. you can choose one of the methods, which is suitable for your requirements.

Step 2: Choose the Identity Type

If you are choosing Domain, you should provide a valid domain name or if you choose Email address, you can provide any of your email addresses.

For this setup, I am choosing the Domain Identity type.

choosing aws ses identity

After choosing the identity type and providing the domain name devopsproject.dev, a few options will be available to customize the service.

The first option you will see is Assign a default configuration set. configurations sets are a set of rules that work with sending emails, examples,

  1. You can use a dedicated IP address for your marketing emails, in SES you can create IP pools.
  2. Integrate Transport Layer Security to make communication more secure.
  3. Use a subdomain to handle the redirected responses.
  4. You can analyze the bounce and compliance emails with the help of Cloudwatch
  5. You can also create a suppression list based on the bouncing and compliant emails.

These are the options you will see when you create a configuration set, you can create multiple configuration sets and attach them to your emails.

Step 3: Create a Custom Mail From Domain

This second option is to use a custom MAIL FROM domain. This you can see only if you choose the Domain identity.

Here, you can provide a subdomain to send emails.

For example, my domain name is devopsproject.dev and I want all of my sending emails from address should be the subdomain, which is email.devopsproject.dev.

aws ses configuration

Step 4: Authentication Mechanism

The third one is an authentication mechanism, which is DomainKeys Identified Mails (DKIM).

This is a recommended option and this security feature helps the sender’s mail server to verify the domain and the receiver’s mail server to ensure the authenticity of the mail.

aws ses authentication

Step 5: Update DNS Records

This setup will create CNAME, MX, and TXT DNS records, and you can directly update them in Route 53 if your domain is hosted in Route 53, otherwise, you have to manually update the DNS records to your intended DNS server.

aws ses cname records

The DNS server will verify the records, until then the identity won’t be verified.

aws ses authentication status

For me, it took only a few minutes to get verified, in your case it may take an hour or so, and if it is not verified, ensure your DNS records are properly stored in the DNS server.

This is how the record is stored in Route 53.

route53 dns records configuration

Once the verification process is completed, you can see the verified mark on your identity status.

aws ses verifcation

Now, you can see in the top right corner, that the Send test email function is enabled, so you can test the email service, but one thing you have to know is that now the service is in the Sandbox environment.

Step 6: Sandbox Environment

Sandbox is only used to test the email and it has email limits that only 200 emails can sent each day, also, if you want to send an email to someone, that receiver’s mail ID should be verified.

To verify the receiver’s mail ID with AWS SES, you have to follow all the steps we have done for the domain validation, but here, instead of Domain, we use an email address.

aws ses identity creation

The receiver will get an email with a URL, and clicking that link will verify the identity.

email through aws ses

Once the receiver’s identity is verified, you can send test emails to that particular email.

aws ses verifed identities

Our configurations and the testing process are completed, now is the time to get out of the Sandbox environment.

Step 7: Get Over From Sandbox Environment

In the account dashboard, we can see the request production access tab. click that will navigate to another page, where you have to send a request with valid information.

aws ses sandbox environment

The request will take almost one day to process, after that your limitations will be removed.

Then you can see the dashboard like this and also from now on, we don’t have to verify the receiver’s mail IDs to send emails.

aws ses dashboard

Step 8: Send Emails through AWS SES

Navigate to the Configuration sections and open the verified identities. Then click to open the domain devopsproject.dev.

Click the send test email tab and a new page will open. here you can compose your emails.

SES provides two Email formats, one is Formatted and the other one is Raw.

If you want to create a custom Email format, then choosing RAW would satisfy your preference, the Multipurpose Internet Mail Extention Standard (MIME) helps you create the emails.

I am doing this for testing purposes, so I am choosing a Formatted format to send a mail.

aws ses send test emails

In the next step, you have to provide the from-address, I am giving the subdomain prefix, which is email.

Instead of email, you can give other prefixes like bounce, support, etc, based on your email.

In the scenario section, you can choose a predefined one like successful delivery or automatic response, or you can choose a custom one.

Then the remaining things are the subject and body part, and if you already created a configurations set, you can choose that too, but that is optional.

aws ses send email

Once you send the mail, you will get the output like this.

email on gmail through aws ses

One more thing I want to include in this is that we know we can create a configuration set, which rules, we can attach with the sending emails, same as we can create rules for incoming emails that you can see in the Email Receiving tab.

Conclusion

This is just a base setup of the AWS SES, there are a lot of options available, explore them and include them when you implement them in real situations.

Understanding more about the configuration set and the Email-receiving options will give you more customization features.

Also, your Email templates can be stored in SES and a suppression list helps to add emails for bounce and complaints.

Amazon SES pricing will be calculated based on criteria such as the number of incoming and outgoing messages, dedicated IP, size of the emails, etc.

To know about the pricing, please visit the official documentation.

Leave a Reply

Your email address will not be published. Required fields are marked *

You May Also Like