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

SmtpClient.Send(MailMessage) times-out with large BCC list - C#

Long time reader, first-time asker. I get a time-out when sending email to 110 BCC recipients. I'm trying to send a single email message from a website to members of my club whose website I run. I add myself as the sender and receiver, and the…
-1
votes
1 answer

can't get bpfptr_r uattr parameter when tracing __sys_bpf

my environment: ubuntu 20.04 kernel version: 5.15.0-46-generic x86_64 below is my code: import sys import signal from bcc import BPF import os # define BPF program bpf_text = """ #include #include #include…
luke zou
  • 21
  • 4
-1
votes
2 answers

How to send BCC via MFMailComposeViewController in iPhone SDK?

One part of my app sends an e-mail with an attachment. I'm using the MFMailComposeViewController class, and all is well. I just would like to know if I can send a stealth BCC message to myself, just for statistics purposes to keep track of how many…
neowinston
  • 7,584
  • 10
  • 52
  • 83
-1
votes
1 answer

Contact from include BCC along with Recipient

I want to send BCC email along with Recipient in Contact form. How I can include BCC in my code? I am not seeing error in below code but it won't send you email to BCC or Recipient. If I remove BCC, it will send you to Recipient. $recipient =…
Nisarg
  • 1,631
  • 6
  • 19
  • 31
-1
votes
2 answers

php mail with bcc not working

I am using below code for sending mail with cc and bcc. $headers="From: $name <{$fromAddress}>\r\n". "Reply-To: info@test.com\r\n". "Cc: abc@gmail.com\r\n". "BCC: pqr@gmail.com\r\n". "MIME-Version:…
Paritosh Mahale
  • 1,238
  • 2
  • 14
  • 42
-1
votes
1 answer

Sendmail Header Rewrite (incoming mail, BCC/undisclosed-recipients to TO) (Centos)

my server uses sendmail 8.13.8 for incoming and outgoing. I get spam destined to undisclosed-recipients - (see below example) i wish to know which address the spammer sent this to as my mailbox uses catch all from several domains... I aware i can…
-2
votes
1 answer

Python email send cc instead of bcc

We have written python code that sends emails. Bcc is an array of 2 emails and there is no cc. Even though there is no CC, the BCC emails are added as CC. Here is the code: bcc = "x, y" response = self.connection.send_email( source =…
Ira Shyti
  • 224
  • 1
  • 3
1 2 3
12
13