Nodemailer使用自定义域“ {ETIMEDOUT连接”

时间:2020-04-25 23:30:31

标签: node.js nodemailer

我在Node.js中创建了一个忘记密码的后端路由,并且尝试使用nodemailer从我从namecheap.com购买的自定义域以及电子邮件域发送电子邮件。我不确定主机,端口/安全性或身份验证是否有问题。但是,当我更改主机时,它却给出了ECONREFUSED错误,因此我认为那部分工作正常。 (据我所知)我的防火墙已禁用,我重新启动了,但是很难说,因为Norton Antivirus控制了它。

这是我的代码,取自后端的router.get路由。

完整的错误是“ connect ETIMEDOUT”,然后是一个以:587结尾的IP地址。

const transporter = createTransport({
        host: 'axotl.com',
        port: 587,
        secure: false,
        auth: {
            user: config.get('emailUser'),
            pass: config.get('emailPass')
        }
    });
    let resetLink = '';
    let authToken = '';
    await jwt.sign({ email: req.params.email }, config.get('JWTSecret'), { expiresIn: 10800000 }, (err, token) => {
        if (err) throw err;
        authToken += token;
    })
    resetLink = await `${config.get('productionLink')}/recipients/resetpassword/${authToken}`
    console.log(`resetlink : ${resetLink}`)
    const mailOptions = {
        from: '"Axotl Support" <support@axotl.com>',
        to: req.params.email,
        subject: "Forgot Password",
        text: `Hello ${req.name},\n\nHere is the password reset link you requested (expires in 3 hours): ${resetLink}\nIf you did not request this, please notify us at http://axotl.com/support\n\nThanks!\n-Axotl Support`
    }
    try {
        console.log('trycatch entered')
            // const verified = await transporter.verify()
            // console.log(`verified : ${verified}`)
        const res = await transporter.sendMail(mailOptions)
        console.log('email completed')
        console.log(res)

        res.json({ msg: "email sent" })
    } catch (err) {
        console.error(err.message);
        res.status(500).send("Server Error")
    }

1 个答案:

答案 0 :(得分:0)

原来我使用了错误的主机域-该服务没有直接在网站上托管电子邮件域。我对这部分内容了解不足。我将其更改为电子邮件主机,并且可以正常工作。