Skip to content
Advertisement

How to send an confirmation email after registration nodejs

I want to add the code to send email in this function.
I’ve also installed 2 libraries: jsonwebtoken and nodemailer. I’ve seen some code related to this topic but I’m new to javascript and nodejs and i could not seem to make the code work. I could use some help!
Thanks in advance!
This is my code.

JavaScript

Advertisement

Answer

You can use nodemailer library for sending emails. I will explain how to send emails from a gmail account. First you need to enable Less Secure App Access in your gmail account security section.enter image description here

After that, create a transporter using nodemailer:

JavaScript

Then in your code, use created transporter to send mails.

JavaScript

You can refer to nodemailer documentation for more info.

Advertisement