Sono nuovo di nodejs e provare a inviare la posta da nodemailer modulo, ma ha errore cioè "Unsupported configuration, downgrade Nodemailer to v0.7.1 to use it
".Node Mailer di errore: "la configurazione non supportata, downgrade Nodemailer a v0.7.1 per usarlo" in localhost
Ecco il mio codice: -
var nodemailer = require('nodemailer');
var mailTransport = nodemailer.createTransport('SMTP', {
service: 'Gmail',
auth: {
user: '[email protected]',
pass: 'xxxxxxxxx',
}
});
mailTransport.sendMail({
from: '"ABC" <[email protected]>',
to: '[email protected]',
subject: 'Test',
text: 'Thank you for contact.',
}, function (err) {
if (err)
console.error('Unable to send email: ' + err);
});
Partenza [la documentazione] (https://github.com/nodemailer/nodemailer#use-the-default-smtp-transport) su come creare un trasporto con le versioni più recenti nodemailer. – robertklep