var nodemailer = require('nodemailer');
// Not the movie transporter!
var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: '*****@gmail.com', // Your email id
pass: '*******' // Your password
}
});
var mailOptions = {
from: varfrom_name, // sender address
to: varto, // list of receivers
subject: varsubject, // Subject line
text: vartext, // plaintext body
html: varhtml // html body
};
console.log(mailOptions);
// send mail with defined transport object
transporter.sendMail(mailOptions, function (error, info) {
if (error) {
return console.log(error);
}else{
return console.log(info);
}
});
我想要经过身份验证的发件人地址不同吗? 假设我使用abc@gmail.com对数据进行了身份验证,但我想将邮件从xyz@gmail.com发送到def@gmail.com。 如何在节点邮件中做到这一点?
// Using send mail npm module
var sendmail = require('sendmail')({silent: true})
sendmail({
from: ' xyz@gmail.com',
to: 'def@gmail.comh',
subject: 'MailComposer sendmail',
html: 'Mail of test sendmail ',
attachments: [
]
}, function (err, reply) {
console.log(err && err.stack)
console.dir(reply)
})
但是发送邮箱中的邮件以及我们发送的邮件是否会在发件人邮件地址的发送邮件中显示?
我希望我能够详细说明我的问题
答案 0 :(得分:0)
我认为你不能。 Gmail不允许更改发件人地址。
但是,您可以查找其他服务,例如邮戳,sendgrid或创建自己的smtp服务器。