标签: node.js nodemailer
我正在使用此SMTP设置:
secure: true, ignoreTLS : true, port: 465,
但我收到此错误,无法发送电子邮件:
[Error: DEPTH_ZERO_SELF_SIGNED_CERT]
我怎能忽略它?
答案 0 :(得分:2)
让它工作,只需将其添加到option.tls:
option.tls
{rejectUnauthorized: false}