Bcc emails not coming along via Meteor email package

I am using Meteor email package to send emails. My method is as follows

Meteor.methods({
sendEmail: function (to, from, subject, text) {
check([to, from, subject, text], [String]);

this.unblock();

Email.send({
  to: to,
  from: from,
  subject: subject,
  text: text
});

}
});
I am able to send emails via the above code. the moment I add bcc to the method, only the email address mentioned in the to goes. However if I add cc, it goes. Does it mean bcc will not work?

Any ideas???

Ram

1 Like