小编Zes*_*irk的帖子

如何在 nodemailer 中定义自定义域电子邮件?

我正在尝试使用 Nodejs 包 Nodemailer 发送电子邮件,但我无法将电子邮件从电子邮件更改为我的自定义域电子邮件。任何帮助将不胜感激。这是我用来发送电子邮件的代码。

transporter.sendMail({
   from: 'support@domain.com',
   to: 'recipient@example.com',
   subject: 'Message',
   text: 'I hope this message gets through!',
   auth: {
            user: 'zeshanvirk@gmail.com'
         }
});
Run Code Online (Sandbox Code Playgroud)

node.js nodemailer

12
推荐指数
1
解决办法
1万
查看次数

标签 统计

node.js ×1

nodemailer ×1