DEV Community

Cover image for AWS SES with NodeJS - Send E-Mails with Amazon AWS's SES utility and Lambda functions.
MrSrv7
MrSrv7

Posted on

AWS SES with NodeJS - Send E-Mails with Amazon AWS's SES utility and Lambda functions.

  If you are a beginner, it might not be easy to set up an E-Mail delivery service like SendGrid from scratch and access it programmatically in your NodeJS Server application or even a ReactJS frontend application. Let's discuss how to set up the same with AWS's SES and Lambda functions to deliver a welcome email to new users signing up for our application.

SES

  If you are unaware of SES, Amazon's Simple Email Service (SES) is a cloud-based email service provided by Amazon Web Services (AWS) that enables businesses to send and receive emails. SES allows developers to send bulk emails to their users with high deliverability. It provides a reliable, cost-effective solution for managing transactional emails such as welcome emails, password reset emails, order confirmations, and other automated emails.

AWS Setup

  If you are new to AWS, you should create an Access Key (like an API key) to use AWS SDK's functions from your NodeJS functions after creating an account. Go to the Security Credentials tab in AWS and create an Access Key for the IAM user or root user.

Note: AWS doesn't recommend creating root user access keys. Because you can't specify the root user in a permissions policy, you can't limit its permissions, which is a best practice. Instead, use alternatives such as an IAM role or a user in IAM Identity Center, which provide temporary rather than long-term credentials. If your use case requires an access key, create an IAM user with an access key and apply the least privilege permissions for that user.

  As this is for educational purposes, I will create an Access Key for the root user and proceed with that.

AWS SES Setup

  After creating the Access Key, search for SES in the AWS search bar and select Amazon Simple Email Service from the results (I cannot provide the direct link as it will vary according to the region of your account).

  In SES, select create identity. Enter the from address (from which the emails will be sent to the users). You can verify the domain if you plan to use SES for production. For the sake of this article, I will create an identity with my email address and verify it.

ses setup

  After creating the identity, we will receive a verification email from AWS to authenticate the sender's identity. Click on the link in the email and authenticate the same.

AWS SES Verification Email

Serverless Lambda function

  Now that we have authenticated the from identity, we can set up our serverless lambda function that will trigger and act as an API through which we can programmatically send emails to recipients.

We must create a custom role for our lambda function to access AWS's SES to send emails. Please follow AWS SES Setup for the same.

  Click on Create Function. Select the Author from Scratch option, give the function a name, and select the architecture and run time (in our case, NodeJS). Scroll down to the code section and enter the following code by selecting index.js

const AWS = require('aws-sdk');
const ses = new AWS.SES({ region: 'ap-south-1' });

exports.handler = async (event) => {
  const params = {
    Source: '', // replace with your verified email address
    Destination: {
      ToAddresses: [] // replace with the recipient's email address
    },
    Message: {
      Subject: {
        Data: 'Test email from Lambda' // replace with your email subject
      },
      Body: {
        Text: {
          Data: 'This is a test email sent from a Lambda function.' // replace with your email body
        }
      }
    }
  };

  try {
    const result = await ses.sendEmail(params).promise();
    console.log(result);
    return result;
  } catch (err) {
    console.log(err);
    throw err;
  }
};
Enter fullscreen mode Exit fullscreen mode

  After entering the code, click on Deploy. Once the changes are deployed successfully, click on Test to verify the functionality.

Check out this for GIF version for setting up the Lambda function

  Now we can programmatically access this AWS Lambda function even from your ReactJS application or our own NodeJS server application like

const AWS = require("aws-sdk");

AWS.config.update({
  accessKeyId: "accessKey",
  secretAccessKey: "secretAccessKey",
  region: 'region'
});

const lambda = new AWS.Lambda();

const functionName = "welcomeEmail";

const payload = {};

const params = {
  FunctionName: functionName,
  Payload: JSON.stringify(payload),
};

lambda.invoke(params, function (err, data) {
  if (err) {
    console.error(err);
  } else {
    console.log(data);
  }
});
Enter fullscreen mode Exit fullscreen mode

  Once we run this code with node filename.js, we see no errors, and the email has been delivered to our inbox.

Output

img

Mail Inbox

img

View the GitHub repository here: MrSrv7/aws-ses-lambda

Conclusion

  This way, we can make a Serverless AWS Lambda function to send emails via AWS's SES programmatically. This is just one of the many advantages of Serverless functions. With the help of serverless functions, we can have our custom functions for custom functionalities without creating a server application from scratch and configuring and maintaining the same. To know more about Serverless functions, checkout this post.

Top comments (0)