我正在尝试使用 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)