我尝试通过Nodemailer发送电子邮件,并且总是收到相同的错误:

    hostname: 'smtp.zoho.com',
    secure: true,
    port: 465,
    auth: {
        user: '[email protected]',
        pass: 'apppassgenerated'
    }
});


我也尝试过:

   service: 'Zoho',
    auth: {
        user: '[email protected]',
        pass: 'apppassgenerated'
    }
});


我总是得到:{错误:queryA已拒绝smtp.zoho.com
    在QueryReqWrap.onresolve [oncomplete](dns.js:213:19)
  errno:“ EREFUSED”,
  代码:“ EDNS”,
  syscall:“ queryA”,
  主机名:“ smtp.zoho.com”,
  命令:“ CONN”}

最佳答案

好的,那是因为我正在使用Google Functions的免费计划。如果您想集成外部工具,则必须付费🤷️

关于javascript - Zoho与NodeMailer一起无法正常工作错误代码:“EDNS”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56741525/

10-11 05:31