How To Send An Email in Node JS Using An SMTP (Step-By-Step)
Do you want to send an Email to your users in Node JS? Learn how to do so by first setting up an SMTP using Brevo SMTP and then sending the first email in this step-by-step guide! Brevo offers a free tier with up to 300 free emails per day, which is enough for most small projects!
Set up Brevo SMTP
Before we can send an Email we have to set up an SMTP service. For this guide, I am using Brevo because I have a good experience with them, and the 300 free emails per day are enough for my projects. You can use whatever SMTP server you have access to, though.
- Create an account for Brevo here (affiliate link).
- Log in to your account
- Click on your Profile and go to “SMTP & API”
- Click on “Generate a new SMTP key”
- Enter a name for the key, for example, “node-mail”
- Copy the key. You will need it in the next step
Send an Email in Node JS
Now that we have set up Brevo, you need the following details from the last steps to be able to send an email using the SMTP:
- SMTP Server: smtp-relay.sendinblue.com
- Port: 587
- Login: <your-email>
- Key: <your-key>
For this guide, I will create a new project, install the nodemailer npm package and then send an email using it. Follow these steps:
npm init -y
npm i nodemailer
- Create a file called
index.js
- Enter the following code:
const { createTransport } = require('nodemailer');
const transporter = createTransport({
host: "smtp-relay.sendinblue.com",
port: 587,
auth: {
user: "<your-login>",
pass: "<your-key>",
},
});
const mailOptions = {
from: '<your-login>',
to: '<your-receiver>',
subject: `Your subject`,
text: `Your text content`
};
transporter.sendMail(mailOptions, function(error, info){
if (error) {
console.log(error);
} else {
console.log('Email sent: ' + info.response);
}
});
With this, you are able to send emails using Node JS and Brevo SMTP. Try it out now, and let me know what you think!
Conclusion
In this guide, how to set up Brevo SMTP and use it to send an email in Node JS. I hope the guide was helpful to you, and if you have any questions, feel free to ask.
Need help or want to share feedback? Join my discord community!
Don’t miss out on any updates or future guides by subscribing to my monthly newsletter.
[convertkit form=2303042]
If this guide is helpful to you and you like what I do, please support me with a coffee!