heroku 部署 nodemailer

heroku deployment nodemailer

我可以在本地部署我的应用程序,但不能在 heroku 上部署。我正在使用 nodemailer 并尝试从我的网站向自己发送邮件。这是路线:

app.post('/contact', function (req, res) {
    let mailOpts, smtpTrans;
    smtpTrans = nodemailer.createTransport({
        servic: 'gmail',
        auth: {
            user: 'randomemail',
            pass: 'password'
        }
    });
    mailOpts = {
        from: req.body.name + ' <' + req.body.email + '>',
        to: 'randomemail',
        subject: 'New message from contact form at your portfolio page',
        text: `${req.body.name} (${req.body.email}) says: \n \n ${req.body.message}`
    };
    smtpTrans.sendMail(mailOpts, function (error, response) {
        if (error) {
            res.render('contact-failure');
        }
        else {
            res.send(response);
        }
    });
});```

这是我尝试从 heroku 给自己发送邮件时遇到的错误。

2018-05-29T06:31:32.280501+00:00 heroku[router]: at=error code=H13 desc="Connection closed without response" method=POST path="/contact" host=desolate-journey-40239.herokuapp.com request_id=4c462f91-9f47-4566-943a-2c5e24d795ac fwd="75.74.137.60" dyno=web.1 connect=0ms service=89ms status=503 bytes=0 protocol=https

注意:我在这里尝试了一些事情:https://accounts.google.com/b/0/DisplayUnlockCaptcha 解锁我的帐户无济于事。

如有任何回应,我们将不胜感激。提前致谢。

我注意到 'service' 上的拼写错误,这似乎解决了我的错误。