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
2
votes
1 answer

Sending bcc email recipient in Jenkins using email-ext plugin

I am using the email-ext plugin in Jenkins to send email messages upon build completion in Jenkins. I want to include certain email addresses as bcc and am using the following convention when specifying email…
ashah
  • 193
  • 1
  • 4
  • 15
2
votes
8 answers

Is it a good idea to trust BCC to not reveal other people's addresses?

I'm using PHPMailer to send emails with SMTP from my script. The emails in question are actually cell numbers utilizing email-to-SMS gateways. Now, ideally I want to build up a big BCC list to send everything in one batch instead of looping through…
DWilliams
  • 451
  • 8
  • 22
2
votes
1 answer

Send mail with python using bcc

I'm working with django, i need send a mail to many emails, i want to do this with a high level library like python-mailer, but i need use bcc field, any suggestions?
diegueus9
  • 29,351
  • 16
  • 62
  • 74
2
votes
0 answers

16-bit app crashing under Win7 32-bit (x86) but runs fine under Win XP

As the subject says, I am having a problem with my 16-bit application. Application is very low-level, doing some operations in C++/Assembly language. One thing to emphasize: this is a faculty project, so I am somewhat confident that fellow…
Jovan Perovic
  • 19,846
  • 5
  • 44
  • 85
2
votes
1 answer

BCC Recipients Visible to Eachother

Not sure if this belongs here or not, as I am the one generating the email via PHP. Basically, using the code below, when anyone in the BCC views the email (at least in gmail where I checked), the BCC recipients can all see each other, see…
johnsnails
  • 1,971
  • 20
  • 29
2
votes
3 answers

Sending Emails with BCC list not working

I am trying to send emails to a single 'To' recipient, and a list of 'Bcc' recipients. The list of Bcc recipients is a list of string, and they are successfully being added to the mailMessage's Bcc collection, but not actually being sent. If I add…
dobestar
  • 311
  • 3
  • 15
2
votes
1 answer

SmtpClient: Bcc ignored when using SmtpDeliveryMethod.SpecifiedPickupDirectory

In 2010 (we were still using Net 2.0 at the time) we encountered a problem that mail were not send to Bcc recipients when using the SmtpDeliveryMethod.SpecifiedPickupDirectory with the SmtpClient. After searching the web (link and link), i made the…
Marc
  • 983
  • 2
  • 12
  • 28
1
vote
1 answer

BCC not correctly handled when sendin a mail out of an Oracle database via MS Exchange

I send e-mails from an Oracle database via MS Exchange. For this I use "UTL_SMTP". But if I use "BCC", I see the header unchanged in the mail source of all recipients. So everyone can see who is in BCC. What's wrong there? Do I have to consider…
1
vote
0 answers

How to handle C library ABI changes

There is an bcc library that eventually changed number of arguments in bpf_attach_uprobe() function starting from version 0.17. There is also iovisor/gobpf library that calls bpf_attach_uprobe() using "C" package. The issue is that last version of…
Kamil Zaripov
  • 904
  • 11
  • 33
1
vote
0 answers

Correct include order to read ?

I have been writing an ebpf golang program that tries to access struct task_struct from #include. I am on Debian GNU/Linux 11 (bullseye) with kernel version 5.10.0-19 and architecture x86_64. The header is found in the package…
Angela
  • 23
  • 4
1
vote
1 answer

Add a Supplier custom field email address as BCC to woocommerce email New Order

I have a holiday letting wordpress site which has the advanced custom field "Supplier Email" in the add listing page. When a rental is booked the Supplier Email needs to be added to the woocommerce New Order email under BCC, i have tried numerous…
johnnyc0506
  • 133
  • 1
  • 3
  • 12
1
vote
0 answers

Questions about recording cpu time using BCC/eBPF

I am a rookie in BCC/eBPF. I am now trying to calculate the process's CPU utilization using BCC. I thought I can do this by recording the on-cpu time and off-cpu time of the process and then calculate the utilization by on-cpu time/(on-cpu…
Yikai Li
  • 11
  • 1
1
vote
0 answers

php pear e-mail with bcc

I'm trying to send an e-mail with a bcc. I can send it with a bcc fairly easily, but that's not quite what I want. The code that does work is $message = new Mail_mime(); $message->setTXTBody($_text); ... $body = $message->get(); $thisSubject =…
Gary Dale
  • 79
  • 9
1
vote
1 answer

Auto BCC - Multiple Email Addresses

I want to automatically BCC two email addresses. I found this code from groovypost.com but it can only BCC one address. Dim objRecip As Recipient Dim strMsg As String Dim res As Integer Dim strBcc As String On Error Resume Next ' #### USER OPTIONS…
1
vote
1 answer

Send processing email notification to an additional hidden recipient in WooCommerce

I'm trying to send an extra mail using the customer-processing-order.php template, so when a User received the mail with the order details, another subject will receive a similar mail. This is my trying, but when I click on the submit order button…
Pickeroll
  • 908
  • 2
  • 10
  • 25