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
3 answers

Exchange EWS get BCC Recipients

I am using EWS to create a StreamingSubscription on an inbox. It is listening for the NewMail event. I am able to pull the From Address, Subject, Body, To Address, CC Address but not the BCC Address. Is there any way to see this…
J Max
  • 2,371
  • 2
  • 25
  • 42
2
votes
4 answers

will adding bcc to php mail save resources?

I am writing an admin notification sytem for my custom CMS. So I am planning of adding a bcc to all the users of sites. So here are my questions? Is bcc better than the foreach($user){mail()} function? in terms of server resource usage? How many…
user632347
  • 835
  • 2
  • 9
  • 21
2
votes
2 answers

Exim: Forward Based on Recipient in bcc

Currently I am filtering incoming mails by a .forward in the following way: if $header_to: matches "(office|info)@domain.com" then save Maildir/.office/ endif if $header_to: matches "whatever@domain.com" then save…
Markus
  • 5,667
  • 4
  • 48
  • 64
2
votes
2 answers

With sendgrid and python, how to send an email to multiple BCC at once?

Please, in python3 and sendgrid I need to send an email to multiple addresses in BCC way. I have these emails on a list. I'm trying like this with Personalization: import os import json from sendgrid import SendGridAPIClient from…
Reinaldo Chaves
  • 965
  • 4
  • 16
  • 43
2
votes
0 answers

CC,BCC property not working in outlook email compose option in javascript

In my requirement I need to implement email option. By default I have to open outlook as default composer. I am using below code to open outlook as default var mailData = 'https://outlook.live.com/owa/?path=/mail/action/compose&to=' +…
Murugan.P
  • 335
  • 3
  • 13
2
votes
1 answer

Adding BCC recipient to WooCommerce email notification from ACF option

Using Advanced Custom Fields plugin, I have created a custom field in the WordPress options tab that allows my client to add an additional email which will receive Woocommerce new order email confirmation, as well as themselves. The function below…
2
votes
1 answer

How to Check if BCC field is empty

To prevent the sending of mass emails to recipients in the To field, a popup message can appear when sending to more than X number of recipients. I have created a code that will do just this. Private Sub Application_ItemSend(ByVal Item As Object,…
Portarto
  • 35
  • 5
2
votes
1 answer

Using bcc python to detach probe

I am searching for a counterpart function with attach_kprobe(), which can detach the probe we insert previously. If it doesn't exist, are there any possible to detach inserted probe in same program using Python? Any suggestion will be appreciated!
Steven
  • 811
  • 4
  • 23
2
votes
1 answer

Microsoft graph API - empty bccRecipients list

This is the Scenario: In the same Azure tenant, I used one account (user_1_address) to send emails to the other account (user_2_address) using outlook (o365). I sent 3 emails, one where user_2_address is BCCed, one CCed, and one when it's the TO…
lmaayanl
  • 378
  • 1
  • 2
  • 15
2
votes
2 answers

For non-customized bulk email, is it better to use the BCC field, or generate a separate email with To header for each recipient?

I'm generating a bulk mailing each day for users who want to receive the daily deals. I can either send a separate physical email with each user specified on their own unique To header, or I can send one email with all the users on the BCC line.…
Zak
  • 24,947
  • 11
  • 38
  • 68
2
votes
1 answer

Add Bcc to email sent with Gmail API with PHP

So, I followed everything is this guide, and yes, I was able to send emails, but I'm trying to add Bcc emails, because its a very long list and I dont want them to show in the email's recipients list. When sending with PHPMailer everything is fine,…
Lauro182
  • 1,597
  • 3
  • 15
  • 41
2
votes
5 answers

Does BCC send PHP mail() to a mailing list differently than TOs?

I'm improving PHP mailing list code that uses mail() in a loop while iterating through all subscribers. The script used to display a "Maximum execution time of 30 seconds exceeded" error which I solved by adding set_time_limit(0);. Now there's no…
samoyed
  • 881
  • 4
  • 13
  • 25
2
votes
1 answer

Allow param to accept a Null or Empty String PowerShell

In this method, I have added a parameter $blindcopy that I want to be able to bcc users when called. After testing this script without that parameter added, all is well. After adding this addition, I receive an error saying "Cannot validate the…
johnnyjohnson
  • 93
  • 3
  • 11
2
votes
1 answer

How to get current email id in body using PHP Mailer

Currently I am working on a PHP email script using PHPMailer` library. I am sending a mass mail using BCC for all the email addresses. I want each email to contain the current recipient's email address in the message body. Below is my sample…
Hiranya Sarma
  • 1,454
  • 4
  • 15
  • 25
2
votes
0 answers

Sendgrid BCC not working correctly in Java API

I am using SendGrid v2 Mail Java API in my Java application, when I add emails in TO and BCC, then after sending the email through my application, TO email is working fine and I got the email, but when I logged in with the same BCC email in my…
Divyesh Kanzariya
  • 3,629
  • 3
  • 43
  • 44
1 2
3
12 13