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

How to hide BCC field in SENT email Outlook 2010 VBA

I have a macro coded to a rule that autoforwards all incoming and sent emails to a private email address in the BCC field (any auto BCC rule is disabled at the server level.) With the help of the board here, the macro works flawlessly, and for all…
parodytx
  • 75
  • 1
  • 13
1
vote
2 answers

PHP Email Bcc from form

I've created a form to get information from end users and email to a specific person. I'd like for the form to also be emailed to the submitter. Everything works, except when I try to Bcc the submitter. If I add the line to Bcc, the email is not…
1
vote
0 answers

SPF wrong IP bcc user receives message

A domain is configured to allow one IP address only as the designated email sender. This is configured using an SPF entry. When my .NET smtp client sends an email from a different IP address other than the one specified in the SPF record the…
LL020
  • 55
  • 4
1
vote
2 answers

sending only BCC mail in php

I am pulling email addresses from my mailing list in a txt file. with the following: clearstatcache(); $file = file("test.txt"); for ($i = 0; $i < 20; $i++) { $emails .= $file[$i]; } As you can see I've stored them in $emails. and if I…
Guage
  • 85
  • 10
1
vote
0 answers

How to BCC all emails in Prestashop?

I have tried to create a file in override/classes named Mail.php and use the code below. I am trying to BCC all emails that are sent from the system to me - I basically want to see if emails are outgoing since some customers complain they don't get…
Skuta
  • 5,830
  • 27
  • 60
  • 68
1
vote
1 answer

Block emails with large number of recipients of same domain

I have a mailserver with exim4 and spamassassin installed. We have a problem of (internal) spam to a large number of mailinglists, coming from a few users (which we cannot just educate or block for multiple reasons) Is there a way to block emails…
dtech
  • 13,741
  • 11
  • 48
  • 73
1
vote
1 answer

Codeigniter sending multiple email bbc not working

I've sent an email with the Codeigniter (2.1.4) Email library, but the function send return true while I'm not getting the email ?! Here is the code : http://pastebin.com/rYdkr2VD. $config = array( 'mailtype' => 'html', 'bcc_batch_mode' =>…
wYm35
  • 39
  • 8
1
vote
2 answers

Magento adding BCC is not working

Hi I have written below code that will send an email out, everything works, except its not sending the BCC out, I am not sure what its causing it not to add BCC. any help is appreciated. public function sendFraudEmail($observer) { /* @var…
user1920187
  • 802
  • 1
  • 7
  • 15
1
vote
2 answers

Adding e-mail address in BCC in a PHP code

I'm trying to figure out how to add an e-mail address in BCC. Since I added more "$headers" to add the blinded e-mail address, the entire code doesn't function anymore.
CFW
  • 25
  • 3
1
vote
2 answers

Add bcc PHP mail function

Currently this is how the headers look like. What should I do if I want to add a bcc. Thanks for the help. Below is what the code looks like. // create email headers $headers = 'From: '.$email_from."\r\n". 'Reply-To: '.$email_from."\r\n"…
user3377272
  • 51
  • 1
  • 1
  • 3
1
vote
3 answers

Php Mail BCC not working

I am trying to edit this script to send a Bcc copy to myself: $to = $your_email; $from = "Server Xt"; $subject = "User Sent Msg :: $msg"; $HTMLmessage = $message; emailHTML($to, $from, $subject, $HTMLmessage); function…
user3211770
  • 33
  • 1
  • 3
1
vote
1 answer

Hide bcc field in draft email display

I'm trying to hide the Bcc field in an email being drafted in Outlook 2010. I'm using code to add an email address to Bcc which shows the field. I want the real-estate on the screen back. Here's what I have so far (in ThisOutlookSession): Sub…
chrono
  • 138
  • 7
1
vote
3 answers

PHP Mailer, need to add multiple Bcc

I have been using this mailer for a while, but now I need to add (multiple) permanent Bcc addresses. How can I do this? Here is my code so far:
user2720970
  • 284
  • 1
  • 3
  • 17
1
vote
0 answers

opening client default mail application with lot of bcc address

I've implemented a functionality in my MVC 4 web application where the user can select a set of email addresses from a list and by clicking a button it opens the default mail client in the client computer with the selected email addresses in the bcc…
Amila
  • 3,711
  • 3
  • 26
  • 42
1
vote
1 answer

How to include "cc" and "bcc" fields using mailer extension of Yii Framework

I am working on mail sending functionality using yii framework. I am using mailer extension given on link="http://www.yiiframework.com/extension/mailer". I have added all files in extension folder. And i have made separate class file with code as- …
user1722857
  • 877
  • 2
  • 19
  • 33