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

Hubspot will not recognise & log to CRM my BCC emails from AMndrill

I'm using Zapier plus Mandrill to send transactional emails to customers, and want these emails to be logged to the relevant customer account in my Hubspot CRM. Hubspot supports a BCC address that can do this, and works for my sending domain when I…
Richard F
  • 1
  • 1
0
votes
1 answer

Add BCC to Woocoomerce transactional email sent through Sendinblue

We are currently using Sendinblue as mail marketing provider and did set it up on our Wordpress/Woocommerce shop to handle marketing and transactional emails now. Before that, we used to send some transactional woocommerce transactional email, such…
0
votes
1 answer

Mac Catalyst- how to setBccRecipients for an email?

In converting my email app to Mac Catalyst, I found that the setBccRecipients function of MFMailComposeViewController fails, with a message "'setToBccRecipients' not supported" however the call I am trying to use is "setBccRecipients", and the…
Peter Johnson
  • 3,764
  • 1
  • 23
  • 27
0
votes
0 answers

Cc and Bcc not working, I'm getting back the error "Invalid email: [L;@34c5bdeb"

I was following this post to create an image from a spreadsheet keeping the same color and format to be sent as an email. Now while I try to send the email as "cc" or "bcc", I get back an error that says "Invalid email: [L;@34c5bdeb (line 34, file…
0
votes
0 answers

what is limit of adding bcc mail id's for single mail

I am using my gmail hosting details for sending mail, For sending single mail to multiple user I am adding there mail address into BCC Now I just want to know the limit of adding BCC mail address. Any idea?
Paritosh Mahale
  • 1,238
  • 2
  • 14
  • 42
0
votes
1 answer

option to send copy of customer welcome email to another address mail in magento 2

i need to send a copy of welcome email to specific mail. what i did is i tried to create module to do it programmatically, i created a overrid that handle execute CreatePost.php but it sent before.
taoufiqaitali
  • 460
  • 5
  • 10
0
votes
0 answers

How can I add some bcc addresses to this script and not send duplicates?

I have a perfect working script that substitutes a name for an email address and then sends that address an email. I only included the email part that's broken from adding bcc. I need to add several bcc recipients to it. But when I add them, the…
0
votes
1 answer

Add BCC to mail via VBS (through GPO)

Every mail sent should BCC to a second E-Mail address. I found VBA code examples like: Private Sub Application_ItemSend(ByVal Item As Object, _ Cancel As Boolean) Dim objRecip As Recipient Dim strMsg As String Dim res As…
Alkahna
  • 441
  • 7
  • 21
0
votes
1 answer

Exim - identify recipient BCC address

I'm using plus-addressing on Exim to create an automated system - I will process emails based on the local part of the address. So eg: From: me@eximdomain.com To: robot+project-4@eximdomain.com This works well - I can process it based on the To…
Matthew
  • 31
  • 1
  • 3
0
votes
2 answers

How to add BCC in a mail function php

I want to add bcc in my mail function php file. if(isset($_POST['fname']) && isset($_POST['lname']) && isset($_POST['email']) && isset($_POST['phone']) && isset($_POST['message'])){ if(!empty($_POST['fname']) && !empty($_POST['lname']) &&…
0
votes
1 answer

How to send email with hidden BCC and HTML content

That's my first post here :) This is the first python I ever made. I'm trying to write a script that will send an e-mail when run. About this e-mail there are 3 important things for me: 1) There's no "To" - only "CC" and "BCC". 2) BCC - there are a…
0
votes
0 answers

How to disable the BCC field in Mozilla Thunderbird?

I want to disable the BCC field in Mozilla Thunderbird. I delete the BCC command in JS but it still working File Path :C:\Program Files (x86)\Mozilla Thunderbird\distribution\extensions{e2fda1a4-762b-4020-b5ad-a41df1933103}\components File…
Alone
  • 81
  • 1
  • 1
  • 7
0
votes
1 answer

Autofill BCC address

I want to autofill the BCC field with a specific address on replies, forwards and new emails. I have seen a similar function that performs "silently" - i.e., the BCC address is added once the 'Send' button has been pressed. I want to be able to…
Hobbes
  • 11
  • 1
0
votes
2 answers

why bcc emails sent via php mail are not hidden

i am trying to send emails via Bcc and i was expecting that they were hidden but it seems not. Maybe my code is not correct? // grab all emails from txt file $myfile = fopen("database-email.txt", "r") or die("Unable to open file!"); $allEmails =…
Jack Maessen
  • 1,780
  • 4
  • 19
  • 51
0
votes
1 answer

PHP imap_append with BCC

I'm handling a mailbox for an app, and after sending an e-mail, I'd like to append it in a "Sent" mailbox, and to be able to retrieve recipients (to, cc and bcc). This works great with the following code... $envelope = imap_mail_compose([ …
Ecorce
  • 123
  • 2
  • 11