我们的nodemailer smtp配置为:
host: example.host
port: 25
pool: true
maxConnections: 2
authMethod: 'PLAIN'
auth:
user: 'username'
pass: 'pass'
它抛出了一个错误,有时SMTPConnection._formatError出现连接超时。并非每一个请求。
答案 0 :(得分:0)
我的同事发现,当我们应该关闭连接时,池连接保持打开状态。
将配置更改为:
host: example.host
authMethod: 'PLAIN'
auth:
user: 'username'
pass: 'pass'
由于电子邮件数量有限,因此杀死了池。