I\'m trying to send the email gmail smtp but I\'m getting the error:
My email and password is correct I\'m using the nodemailer for sending the mail;
Google don't allow you to send direct e-mail to other's. First of all you have to create a app password .For that thing please follow below steps to get it done
var smtpTransport = nodemailer.createTransport({
service: "Gmail",
auth: {
user: "example@example.com",
pass: "password"
}
That's it.