如何使用 nodemailer 和 gmail 发送电子邮件?

How to send email using nodemailer and gmail?

我正在使用 nodemailer 向客户发送电子邮件。

这里是我如何配置我的运输车:

const mailTransport = nodemailer.createTransport({
service:'Gmail',
auth: {
    user : "xxxx",
    pass : "xxxx",
});

不幸的是它不起作用,我得到了"Invalid Login error"。我在网上查看并通过设置帐户自动 "less security connections"。

不幸的是我遇到了同样的错误...

可以解释一下我该怎么做吗?

谢谢

建议为 GMail 生成一个 app password,并与 Nodemailer 一起使用。

这将绕过任何 2FA 对话框以及使用标准密码时可能遇到的任何 'sign in authorizations'。

'using Gmail' in the Nodemailer docs.