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
1
vote
2 answers

Python Emails Not Sending to BCC

I am trying to make some python code that will send emails. I have been successful so far, but the BCC's are not being sent the message. """ June 18, 2020 @author: Carlos """ import smtplib from email.mime.multipart import MIMEMultipart from…
StarbuckBarista
  • 1,298
  • 1
  • 8
  • 20
1
vote
0 answers

How to send Bcc in Python Google API?

I'm using the code described in: Sending email via gmail & python to send e-mails. Everything works great. Now I'd like to add a Bcc (one or more) and I don't know how. If I add: message['Bcc'] = 'mail@mail.com' it works but the senders see the…
José Luis
  • 163
  • 2
  • 9
1
vote
0 answers

How to handle hundreds of recipients with phpmailer

There are already many questions about it, but the answers I found are not clear or contrasting, while the problem, even if stated in many ways, seem IMHO to be a general one (and I have it too). When you have hundreds to thousands recipients for…
massi
  • 200
  • 9
1
vote
3 answers

Using MFMailComposeViewController, is it possible to BCC the default mail account?

I believe that the iOS SDK provides no access to the details of the default mail account (for good reason), but is there any other way to somehow setup MFMailComposeViewController to prefill the BCC field with the "from" address? Am I overlooking…
Angela
  • 3,050
  • 2
  • 30
  • 37
1
vote
0 answers

Contact Form 7 Selectable Recipients with Pipe - include CC and BCC

Using WordPress Contact Form 7 and the Selectable Recipient with Pipes, I want to include CC and/or BCC along with the selection. This code doesn't work, but should illustrate my intent. [select* email-recipient "Sales|salesA@yourdomain.com,…
BadCat
  • 11
  • 1
1
vote
1 answer

Automatically BCC in Outlook Office 365 or Outlook Desktop on Mac or PC

I am trying to automatically populate the bcc field with an email address in order to get emails to flow through to Pipedrive CRM. I am wondering how I can run a script to make this populate since there currently is not any functionality in Outlook…
1
vote
1 answer

How to send email with DKIM to BCC using Chilkat using C# .Net

My question is about sending bcc with dkim using chilkat. I have suceesfully sending emails for past several years using Chilkat. I came across a new requirement where i need to BCC sent emails. Previously, I was using I am adding bcc like…
mumair
  • 13
  • 2
1
vote
1 answer

Adding custom emails to BCC for specific Woocommerce email notifications

In Woocommerce, I have a custom email template (id = 'wc_course_order') that sends when a specific product (an online course) is purchased. Below I use a hooked function that adds recipients based on order metadata from custom fields (i.e. "Student…
calwex718
  • 87
  • 2
  • 11
1
vote
1 answer

Text inside an image ATG

My requirement is to write internationalized text inside an image, Does ATG provides any OOTB functionality for the some. I have thought of using Media Repository in BCC , please suggest me an approach to achieve this in ATG
Techie
  • 45
  • 1
  • 1
  • 7
1
vote
1 answer

Combining NASM, BCC and Ld86 in real mode: has bad magic number

I wrote a bootloader and compiled it using NASM assembler (not AS86), everything was working perfectly. Now, I want to learn how to insert 16-bit C code into my application. I read from several SOs that bcc is recommended for such situations due to…
1
vote
1 answer

PHPMailer BCC destroys Format

I recently updated our ancient email function to PHPMailer. Everything works perfectly but now I got a problem with BCC. When I add one or more adresses with $mail->AddBCC($arr["bcc"]); the email-format gets destroyed. Emails will look like…
D. Adam
  • 53
  • 5
1
vote
2 answers

Linux mail command to bcc multiple addresses?

I am using linux mail command to send an automated email to a bunch of people once per week. I want each one of the recipients to be BCC'ed. I am trying this command: mail -v -s "Email Subject" -b george@gmail.com, maria@email.com, gina@correo.com,…
quelquecosa
  • 890
  • 1
  • 10
  • 24
1
vote
1 answer

.NET SmtpClient exposing 10 e-mail addresses when using BCC (via Mandrill)

I'm using the following code to send an email to a list of users: public async Task BroadcastMessage(IEnumerable users, string subject, string body) { var email = new MailMessage { Subject = subject, Body = body, IsBodyHtml = true }; …
dommer
  • 19,610
  • 14
  • 75
  • 137
1
vote
2 answers

Do I have to specify a 'to' recipient?

When I'm sending email via mailgun, must I specify a 'to' recipient? In some cases, I'd prefer to specify only 'Bcc' recipients. EDIT: I've already tried to do this on my own and I receive a 'Bad Request - 'to' parameter is missing' error. I just…
Jim G.
  • 15,141
  • 22
  • 103
  • 166
1
vote
1 answer

PHP Form - bcc mail not sent from email form

hello here is my php code for sending an email, when the mail is sent the address in the bcc section don't receive the email:
GeorgeH
  • 21
  • 3