最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Hide other reciepient in to address while sending email using nodeemailer - Stack Overflow

programmeradmin0浏览0评论

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 badges
Add a ment  | 

4 Answers 4

Reset to default 5

This 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

发布评论

评论列表(0)

  1. 暂无评论