Я новичок в программировании node.js. Я использую модуль nodemailer для отправки писем.
const nodemailer = require ('nodemailer'),
credentials=require('./credentials.js');
var mailTransport=nodemailer.createTransport({
service:'Gmail',
auth: {
user : credentials.gmail.user,
pass : credentials.gmail.password,
}
});
function sendMail(mail_id){
mailTransport.sendMail({
from: ' "my name" <[email protected]>',
to : mail_id, //[email protected]
subject : 'Hello',
text: "Hello How do u do ?",
},function(err,info){
if(err){
console.log('Unable to send the mail :'+err.message);
}
else{
console.log('Message response : '+info.response);
}
});
}
exports.sendMail=sendMail;
Это моя программа для отправки писем другим пользователям. Но я получаю Недействительный вход. Я не знаю, почему это происходит. Я новичок в сценариях node.js и на стороне сервера.
Я использую имя пользователя и пароль gmail для учетных данных.
Пожалуйста, помогите мне.