admin管理员组文章数量:1345174
I am working on EmailSender project using node.js. I found that nodeemailer package is the really making it easier.
But when I sending email to multiple contacts , all contact were seeing the other contact addresses in to column.
I want to hide others from the receiver. That is receiver could only see his email address only.
The code I am using is,
var mailOptions = {
from: '[email protected]', // sender address
to: '[email protected],[email protected]', // list of receivers
subject: 'Hello', // Subject line
text: 'Hello world', // plaintext body
html: '<b>Hello world</b>' // html body
};
transporter.sendMail(mailOptions, function(error, info) {
if (error) {
res.send(error);
} else {
res.send('Message sent: ' + res);
}
});
The question is when receiver1 gets the email, he should not know that receiver2 got the same email.
Thanks.
I am working on EmailSender project using node.js. I found that nodeemailer package is the really making it easier.
But when I sending email to multiple contacts , all contact were seeing the other contact addresses in to column.
I want to hide others from the receiver. That is receiver could only see his email address only.
The code I am using is,
var mailOptions = {
from: '[email protected]', // sender address
to: '[email protected],[email protected]', // list of receivers
subject: 'Hello', // Subject line
text: 'Hello world', // plaintext body
html: '<b>Hello world</b>' // html body
};
transporter.sendMail(mailOptions, function(error, info) {
if (error) {
res.send(error);
} else {
res.send('Message sent: ' + res);
}
});
The question is when receiver1 gets the email, he should not know that receiver2 got the same email.
Thanks.
Share Improve this question edited Jan 9, 2015 at 6:51 Arunkumar asked Nov 27, 2014 at 14:55 ArunkumarArunkumar 1112 silver badges8 bronze badges4 Answers
Reset to default 5This post was added pretty long time ago, but if you are looking for the answer, it is really simple - instead field to:
, use bcc:
.
I believe the typical way to handle this (regardless of language, framework or library) is to send the email to a pletely unrelated email address, typically something like [email protected]
; then you would put the recipients into the BCC list. Note that this increases the odds of the message being flagged as spam by the recipients' email providers, so the safest solution is usually to send the message to each recipient individually.
Store listOfRecipients in a array and loop through them
var listOfRecipients = ["Reciever1 <[email protected]>", "Reciever2 <[email protected]>"]
for (var i = 0; i < listOfRecipients.length; i++) {
var mailOptions = {
from: 'Sender <[email protected]>', // sender address
to: listOfRecipients[i], // list of receivers
subject: 'Hello', // Subject line
text: 'Hello world', // plaintext body
html: '<b>Hello world</b>' // html body
};
transporter.sendMail(mailOptions, function(error, info) {
if (error) {
res.send(error);
} else {
res.send('Message sent: ' + res);
}
});
}
bcc:
only not helped. I'm using a bination of
{
...
to: [],
bcc: recievers
}
Note: property to:
will be empty in received mail
本文标签: javascriptHide other reciepient in to address while sending email using nodeemailerStack Overflow
版权声明:本文标题:javascript - Hide other reciepient in to address while sending email using nodeemailer - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743791130a2539591.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论