我正在使用Nodemailer通过Gmail服务发送忘记密码的邮件。我曾尝试在StackOverflow的早期版本中遇到相同的错误,但是找不到解决方案。请帮助我,我不知道为什么会出现这样的错误,


  “ TypeError:无法在字符串“ smtpTransport”上创建属性“ mailer”


这是我的以下代码-

var nodemailer = require('nodemailer');

app.post('/forgot', function(req, res, next) {
  async.waterfall([
    function(done) {
      crypto.randomBytes(20, function(err, buf) {
        var token = buf.toString('hex');
        done(err, token);
      });
    },
    function(token, done) {
      User.findOne({ email: req.body.email }, function(err, user) {
        if (!user) {
          req.flash('error', 'No account with that email address exists.');
          return res.redirect('/forgot');
        }

        user.resetPasswordToken = token;
        user.resetPasswordExpires = Date.now() + 3600000; // 1 hour

        user.save(function(err) {
          done(err, token, user);
        });
      });
    },
    function(token, user, done) {
        console.log(token, "Token");
        console.log(user, "user")
      var smtpTransport = nodemailer.createTransport('SMTP', {
        service: 'gmail',
        auth: {
          user: '[email protected]',
          pass: '123456'
        }
      });
      var mailOptions = {
        to: user.email,
        from: '[email protected]',
        subject: 'My Products Password Reset',
        text: 'You are receiving this because you (or someone else) have requested the reset of the password for your account.\n\n' +
          'Please click on the following link, or paste this into your browser to complete the process:\n\n' +
          'http://' + req.headers.host + '/reset/' + token + '\n\n' +
          'If you did not request this, please ignore this email and your password will remain unchanged.\n'
      };
      smtpTransport.sendMail(mailOptions, function(err) {
        req.flash('info', 'An e-mail has been sent to ' + user.email + ' with further instructions.');
        done(err, 'done');
      });
    }
  ], function(err) {
    if (err) return next(err);
    res.redirect('/forgot');
  });
});


错误是这样的-


  /home/cis/Desktop/myproducts/node_modules/mongodb/lib/utils.js:132
        丢错
        ^
  
  TypeError:无法在字符串“ smtpTransport”上创建属性“ mailer”
      在Mail(/home/cis/Desktop/myproducts/node_modules/nodemailer/lib/mailer/index.js:45:33)
      在Object.module.exports.createTransport(/home/cis/Desktop/myproducts/node_modules/nodemailer/lib/nodemailer.js:52:14)
      在/home/cis/Desktop/myproducts/app.js:185:38
      在nextTask(/home/cis/Desktop/myproducts/node_modules/async/dist/async.js:5310:14)
      在下一个(/home/cis/Desktop/myproducts/node_modules/async/dist/async.js:5317:9)
      在/home/cis/Desktop/myproducts/node_modules/async/dist/async.js:958:16
      在/home/cis/Desktop/myproducts/app.js:177:11
      在/home/cis/Desktop/myproducts/node_modules/mongoose/lib/model.js:3913:16
      在模型上$ __ save.error(/home/cis/Desktop/myproducts/node_modules/mongoose/lib/model.js:342:7)
      在/home/cis/Desktop/myproducts/node_modules/kareem/index.js:297:21
      在下一个(/home/cis/Desktop/myproducts/node_modules/kareem/index.js:209:27)
      在Kareem.execPost(/home/cis/Desktop/myproducts/node_modules/kareem/index.js:217:3)
      在_cb(/home/cis/Desktop/myproducts/node_modules/kareem/index.js:289:15)
      在$ __ handleSave(/home/cis/Desktop/myproducts/node_modules/mongoose/lib/model.js:280:5)
      在/home/cis/Desktop/myproducts/node_modules/mongoose/lib/model.js:208:9
      在args.push(/home/cis/Desktop/myproducts/node_modules/mongodb/lib/utils.js:404:72)
  [nodemon]应用程序崩溃-等待文件更改,然后再开始...

最佳答案

Nodemailer结构已更改,请尝试使用此结构:

smtpTransport = nodemailer.createTransport({
service: 'Gmail',
auth: {
xoauth2: xoauth2.createXOAuth2Generator({
user: '[email protected]',
//and other stuff here
 });
 }
});

关于javascript - Nodemailer提供错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48383790/

10-10 08:29