cover-img

How to send a email using Sendgrid and Node.js ?

13 April, 2022

10

10

1

In this blog, We will be seeing how to send a email with Nodejs and Sendgrid mail API.

Pre-requisites :

  1. Node and npm installed on your system

Generating API Key on Sendgrid:

We will first need to register for a free SendGrid account.

image.png

After adding your email-address and password , Click on Create Account. We need to further more details to make our way through the send-grid dashboard.

image.png

Enter the details and click on Get Started. You should land on the following screen.

image.png

Before you can send any email with sendgrid , you need to create sender identity.

In the sender creation form, fill up the details as follows (note that it’s better not to use a general email like Gmail):

image.png

Once you are finished with creating your sender identity , You need to verify the sender.

image.png

Head over to API-Keys in settings and click on Create API Key

image.png

Enter the name of key Sending Email and click on Restricted Access , under that click on mail send and enable that.

image.png

Once done , click on create & view. You should see your API key on the screen. Copy it and keep it safe, we will need that while writing code.

image.png

Let’s code.

Sending your first email :

Head over to your terminal and run the following


image.png

Let’s install the following packages


Open your code editor and create .env file with following content


Create index.js file and paste the following


What the above code does

  1. Importing the sendgrid/mail sdk which is helpful for sending the email and configuring the dotenv package to access the environment variables inside our node application.

  2. Configuring both sendgrid and dotenv package.

    Prepping the email to send. In here for the to section use the email which you verified during the sender creation

  3. Finally using send method to send the mail to the user.

Open your terminal and run the following


You should see mail sent on your console. Head over to the email to check for the same.

Note: Check the spam folder if the email is not in your inbox

image.png

🎉 🎉 🎉 Congratulations , You have successfully sent your email with Node.js and sendgrid.

Conclusion:

That's pretty much it. Thank you for taking the time to read the blog post. I hope , everyone understood how to send your first email using sendgrid and node.js.

If you found the post useful , add ❤️ to it and let me know if I have missed something in the comments section. Feedback on the blog are most welcome.

Let's connect

  1. Twitter
  2. Showwcase

Repo Link: https://github.com/skarthikeyan96/sendgrid-node-demo

node.js

typescript

codenewbie

sendgrid

10

10

1

node.js

typescript

codenewbie

sendgrid

Karthikeyan
Front End Developer

More Articles

Showwcase is a professional tech network with over 0 users from over 150 countries. We assist tech professionals in showcasing their unique skills through dedicated profiles and connect them with top global companies for career opportunities.

© Copyright 2024. Showcase Creators Inc. All rights reserved.