Questions tagged [bcc]

A BCC (blind carbon copy; also Bcc) is a copy of an email message sent to a recipient whose email address does not appear in the message.

In the context of correspondence, blind carbon copy (abbreviated Bcc:) refers to the practice of sending a message to multiple recipients in a way that conceals the fact that there may be additional addresses from the complete list of recipients. This concept originally applied to paper correspondence and now also applies to email.
This is in contrast to To and CC recipients, whose addresses do appear in the respective header lines. Every recipient of the message can see all the To and CC recipients, but does not know about BCC recipients.

187 questions
5
votes
3 answers

sendgrid : add cc in email

I am sending email using sendgrid from my app. Now I want to add cc or bcc if user reply to my mail. How Do I do this. let me explain first. I am sending answer of user's feedback comes on my web application using my application let say I am sending…
Manish Sapkal
  • 5,591
  • 8
  • 45
  • 74
5
votes
1 answer

Send Email Using Smtp Client with Mandrill

I want to send a message using Mandrill.I need the following code to do this: Send the same message to all recipient without Each one of them see the address of the other recipient. I used the following code : System.Net.Mail.MailMessage message =…
5
votes
3 answers

BCC in ItemSend event in Outlook 2007 no longer works

I inserted code in ItemSend and saved the ThisOutlookSession module. It worked once and no longer works. It was saved as VBAproject.OTM and is still there when I open the module after restarting Outlook. Private Sub Application_ItemSend(ByVal…
Pixfizz
  • 51
  • 1
  • 2
5
votes
2 answers

bcc multiple addresses with swiftmailer

Im using the below php code to send an email to one address and bcc 2 other addresses. It sends to the recipient fine but I can only get it to send to one of the 2 bcc addresses. (see comments in code for what ive tried) Oddly enough though,…
Wesley Smith
  • 19,401
  • 22
  • 85
  • 133
5
votes
3 answers

pear mail function bcc won't send

I copied a code for PEAR mail from a website, and input my data. It works. It sends mail, however, I want to use bcc to send to a lot of people and keep their addresses anonymous, and it will send to the $to recipients, but not the $bcc. The…
krose
  • 390
  • 1
  • 6
  • 18
4
votes
1 answer

Bcc Field in SMTP [ showing/not showing ] problem

I'm trying to use python's smtplib to send, via gmail, an email with bcc addresses. I use this code: #imports etc... fromAddr = sender@origin.com to = [ recpt1@destinationTo.com ] cc = [ recpt2@destinationCc.com ] bcc = [ recpt3@destinationBcc.com,…
WhyWhat
  • 250
  • 1
  • 9
4
votes
2 answers

Laravel Mail send even if cc and bcc is null

I have mail send function in laravel public static function Compose($to,$cc,$bcc,$subject,$body) { // return $to; try { $data = [ 'body' => $body ]; if(env('APP_ENV')…
Vishal Shetty
  • 1,618
  • 1
  • 27
  • 40
4
votes
2 answers

Add bcc to new order form for woocommerce

How can I add BCC or CC to the woo commerce, new order email? I think this is the code that is running the new order emails: http://codepad.org/kPTpSIM0 I cant seem to find what I need on Google. Thank you in advance. I found this but I do not know…
LukeD1uk
  • 242
  • 2
  • 14
4
votes
2 answers

Java Mail with To, CC and BCC

I am trying to send mail with to, cc and bcc. I am using javax.mail for achieving this. Please find below a part of my code InternetAddress[] myToList = InternetAddress.parse("gopi.mani@xyz.com,Maimsa.SF@xyz.com"); InternetAddress[] myBccList =…
user2928305
  • 85
  • 1
  • 1
  • 9
3
votes
3 answers

sending mails using MailMessage class - Limitations OF BCC and CC counts?

i have a list (1,000,000 emails addresses) of my customers and i want to send them an specific email (all of those emails are the same) using MailMessage calss. is there any limitation(s) about Ensemble Emails using this class or global rules about…
SilverLight
  • 19,668
  • 65
  • 192
  • 300
3
votes
2 answers

GreenMail not returning BCC recipient addresses

I'm using GreenMail in a test to verify that our application is sending email correctly. I start GreenMail with: GreenMail greenMailServer = new GreenMail(new ServerSetup(port, "localhost", ServerSetup.PROTOCOL_SMTP)); greenMailServer.start(); I…
3
votes
1 answer

PHP SMTP BCC, not going through

Recipients named in the BCC/CC (in the headers) are not received. I've found a couple of posts with similar questions, no answers... The code is below, the question is: "Have any of you had similar problems?" require_once "Mail.php"; $host =…
Weston Watson
  • 5,344
  • 6
  • 24
  • 25
3
votes
3 answers

BCC not hidden on gmail using python smtplib

I am working on a python script to send email to my customer with a survey. I will send only one email with all my customers's emails in the BCC field so that I do not need to loop through all the emails. Everything works fine when I tested sending…
greenFedoraHat
  • 97
  • 2
  • 10
3
votes
1 answer

AWS SES SendRawEmailAsync not entertaining BCC

I am sending the email using AWS SES Api, by converting the mail message into the stream, but i am not able to send the BCC. private async Task SendMessageUsingAWSProfileAsync(EmailMessage message, CancellationToken token) { …
Satinder Sidhu
  • 373
  • 3
  • 9
3
votes
1 answer

Outlook 2010 - VBA - Set bcc in ItemSend

Program: Outlook 2010 OS: Win8 VBA Skill: Novice Notes: This works perfectly if I remove the following option Private Sub Application Item_Send '[3] If Item.SendUsingAccount = "Account Name here" Then If I do not remove it…
MrsAdmin
  • 548
  • 5
  • 12
  • 34
1
2
3
12 13