我有一个邮件服务器设置并可以工作(在Linode上使用docker镜像的dockerized dovecot / postfix)-我可以在macbook上从roundcube和邮件客户端发送和接收邮件。
但是使用相同的SMTP服务器和凭据设置nodemailer,我得到:
mynetworks
我正在使用文档中的示例脚本:
{ Error: queryA ECONNREFUSED mail.xxxxx.com
at errnoException (dns.js:50:10)
at QueryReqWrap.onresolve [as oncomplete] (dns.js:238:19)
code: 'EDNS',
errno: 'ECONNREFUSED',
syscall: 'queryA',
hostname: 'mail.xxxxx.com',
command: 'CONN' }
我也遇到相同的错误,而没有尝试使用以下方式发送电子邮件:
"use strict";
const nodemailer = require("nodemailer");
// async..await is not allowed in global scope, must use a wrapper
async function main(){
// Generate test SMTP service account from ethereal.email
// Only needed if you don't have a real mail account for testing
//let account = await nodemailer.createTestAccount();
// create reusable transporter object using the default SMTP transport
let transporter = nodemailer.createTransport({
host: "mail.xxxxx.com",
port: 465,
secure: true, // true for 465, false for other ports
auth: {
user: "steve@xxxxx.com",
pass: "pppppp"
}
});
// setup email data with unicode symbols
let mailOptions = {
from: '"Fred Foo " <foo@example.com>', // sender address
to: "steve@zzzzz.com", // list of receivers
subject: "Hello ✔", // Subject line
text: "Hello world?", // plain text body
html: "<b>Hello world?</b>" // html body
};
// send mail with defined transport object
let info = await transporter.sendMail(mailOptions)
console.log("Message sent: %s", info.messageId);
// Preview only available when sending through an Ethereal account
console.log("Preview URL: %s", nodemailer.getTestMessageUrl(info));
// Message sent: <b658f8ca-6296-ccf4-8306-87d57a0b4321@example.com>
// Preview URL: https://ethereal.email/message/WaQKMgKddxQDoou...
}
main().catch(console.error);
答案 0 :(得分:2)
有同样的问题。只需使用5.0.0之前的版本即可。
要安装特定版本,请使用npm install package@version
在我们的情况下:npm install nodemailer@4.7.0
答案 1 :(得分:0)
我遇到了nodemailer的更新版本的相同问题。我建议您使用以下命令检查配置文件中的凭据。
firebase函数:config:get
答案 2 :(得分:0)
通过生成html文件发送批量邮件时,我遇到了类似的问题。 这对我造成了影响,因为Linux限制了打开文件的数量,这限制了打开每封邮件的电子邮件模板。
Linux的默认限制为1024。 检查命令: ulimit -n
要将打开的文件数上限提高到10000,请执行以下操作: ulimit -n 10000 (我已设置为10000)
提高当前shell 中打开文件的数量限制: ulimit -s 10000
以防万一:您收到权限错误: 您需要在/etc/limits.conf或/etc/security/limits.conf文件(文件的位置取决于您的特定Linux发行版)中提高允许的限制。
例如,要允许计算机上的任何人将其打开文件的数量提高到10000,请将行添加到limits.conf文件中。
* hard nofile 10000
然后注销并重新登录到系统,您应该可以执行以下操作:
ulimit -n 10000
没有权限错误。
它解决了我的问题。我在这里找到了解决方案: changing number of open files limit @will