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

Can't get recipient list correctly output for PHPMailer BCC email and full name

how to merge or join or map two arrays fetched from mysql db array full_name and array email to create one recipient list to be bcc for php mailer and then be able to use something like: $email= array(); $full_name= array(); while loop…
0
votes
3 answers

codeigniter bcc doesn't work

Codeigniter "bcc" doesn't work, But the same code with "to" works just fine! Any suggestions why this happens and how to fix it? Here's my code: $email = "myEmail@myWebsite.com"; $subject = "my subject"; $message = "my…
Mandana Rz
  • 29
  • 11
0
votes
1 answer

How can i handle bcc information with qmail?

I use qmail, and i send a mail with Thunderbird or Outlook. I can handle to, from, body, cc informations with qmail. But i cannot handle bcc. Because people say "qmail stripts out bcc." Some other people says "it is not job of qmail ( mta) , problem…
netdevel1
  • 3
  • 2
0
votes
0 answers

Script will only send emails to own email

Im trying to write a script with which I can BCC email a large amount of people, but it's not working. $headers = 'From: host@host.com' . "\r\n" . 'Bcc: user1@mail.com, user2@mail.com, user3@host.com' . "\r\n" . …
user3394131
  • 199
  • 13
0
votes
1 answer

.bat file with filename input

I want to create a .bat file which gets the filename and processes a command like: make.bat . The .bat file must accept the command in following format: "gcc -ggdb3 -O0 -std=c99 -Wall -Werror %filename% -lcs59 -lm -o %filename%"
0
votes
0 answers

Php email inquiry form - add BCC

The code below is used on my site to send e-mail/inquiry. I try add an additional e-mail address on BCC, but can't figure out how to to this. so your help would be welcome. Thanks in advance for support ! if($_POST) { …
0
votes
1 answer

How to put BCC in Devise 3.0.0 for Rails 3.2.9?

I'm have already tried to rewrite the headers_for, but it's still not working. Here goes my code: app/mailers/devise_notifier.rb: class DeviseNotifier < Devise::Mailer def headers_for(action, opts) super.merge!({bcc: 'my@mail.com'}) …
0
votes
2 answers

PHPMailer or php mail function - show BCC address

I'm using PHPMailer to send mails to a clients database when certain events triggers. Obviously I don't want everyone to get the full list of client's emails, so i'm sending those in BCC using PHPMailer. It's working fine, but there is one…
Jeremy Belolo
  • 4,319
  • 6
  • 44
  • 88
0
votes
1 answer

PHP imap_rfc822_parse_headers getting BCC

Why does the function imap_rfc822_parse_headers not contain BCC information? How do I get this information?
somejkuser
  • 8,856
  • 20
  • 64
  • 130
0
votes
1 answer

PHP SMTPClient adding CC and BCC

I found a simple SMTPClient class for sending emails via SMTP. The problem is I need to add CC and BCC recipients to the client. Can someone assist in implementing this? Heres the class (scroll down a little bit): SMTPClient Thanks!
somejkuser
  • 8,856
  • 20
  • 64
  • 130
0
votes
1 answer

How to insert mail addresses from database to mail sending script

Is there a possible way, to insert data from table to mail sending script? I have made this simple script, but it doesnt work. How to mix these 2 codes? $result = mysql_query("SELECT * FROM tablename WHERE ID =1" ) or die(mysql_error()); while($row…
user2090528
  • 21
  • 1
  • 4
0
votes
1 answer

php mail changing salutation username in each mail, while using BCC function

I am using php mail to send mail to all members in a message thread when a new reply is posted. include('Mail.php'); include('Mail/mime.php'); // Constructing the email $sender = "sender@sender.com";…
aVC
  • 2,254
  • 2
  • 24
  • 46
0
votes
1 answer

Swift Mailer dont't send to "to" but to bcc

I am working on a Mailing-List system combined with an online Forum. Mail Input (Via Postfix forward to Script) works and after receiving an E-Mail the script should process it and send it out. Processing and everything works, sending too. I Have a…
keykiller91
  • 135
  • 1
  • 1
  • 6
0
votes
2 answers

Bug in MailCore when sending mail through bcc

When sending an email with receipts as following to: personA cc: personB bcc :personC All the three person will get the email. And all the received emails will display personC in the receipts field. As we know the bcc contacts personC should not be…
lu yuan
  • 7,207
  • 9
  • 44
  • 78
0
votes
2 answers

To send email in Bcc to multiple users no "TO" user

I am tring to sent email to multiplw users in Bcc through PHP mail scriptcode is as follows - $recipients =array('recpient1@gmail.com','recpient2go@gmail.com'); $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type:…
1 2 3
12
13