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.

learn more… | top users | synonyms

0
votes
0answers
13 views

Bcc not working in combination with mail attachement

Can anybody tell me why the Bcc is not working? There is something I am doing wrong can't seam to figure it out. Also I would like to know if I can add multiple Bcc mail addresses in this way. ...
0
votes
0answers
30 views

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 ...
0
votes
1answer
34 views

BCC mails are going to Spam folder in PHP [closed]

I am using proper headers while using PHP mail() function for sending mails. Problem is all the BCC mails are landing up in SPAM folder at the recipient end. The mail header looks quite like this.. ...
1
vote
1answer
51 views

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. ...
0
votes
1answer
46 views

bcc32 - no console subsystem and no windows subsystem also

I am using old bcc32 (borland 5.5) (I know this is very old compiler but do not tell me I should do not use it ) I can compile with console or with windows subsystem. I do not want to compile with ...
0
votes
1answer
50 views

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?
0
votes
1answer
125 views

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 ...
0
votes
0answers
36 views

pear php mail: “to” value from bcc list

trying to send out an email to a list of emails using pear. I have this: $to = ""; // $Bcc = "email1@test.com, email2@test.com"; // $headers = array( 'From' => ...
0
votes
0answers
101 views

SMTP BCC feature in VB.net

I am looking to add BCC mail feature in the following code. How can I make changes in the following code to send an auto email to more than one email's Dim SMTPServer As New SmtpClient() Dim ...
0
votes
1answer
58 views

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 ...
0
votes
0answers
137 views

Mail.php: BCC not working

I'm using Pear's Mail.php to send automated emails to a client. The EMAIL_ constants are all set properly. The email gets sent from my EMAIL_FROM gmail account and the EMAIL_TO recipient gets the ...
0
votes
2answers
444 views

pear mail function bcc won't send

I copied a code for PEAR mail from a website, and input my data. It works. It sends mail, however, I want to use bcc to send to a lot of people and keep their addresses anonymous, and it will send to ...
0
votes
0answers
41 views

Poco C++ libraries: CC and BCC [closed]

Is there anybody that knows how to add multiple recipients in CC and BCC using Poco ? I've found only the addRecipient function that adds a To address.
0
votes
1answer
78 views

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 ...
2
votes
3answers
1k views

php mail bcc multiple recipients

How do I make a bcc mail? If I send that mail, It shows me all the recipients! $to=array(); $members_query = mysql_query("select email from members"); while( $row = mysql_fetch_array($members_query) ...
-1
votes
2answers
134 views

“bad expression” declare char array c [closed]

When I compile my .c file using bcc, I get a bad expression error (shown below), and I have no idea what's causing it. In main, the following line causes... char test[13312]; ... this error ...
0
votes
0answers
66 views

How do I use external assembly with BCC

I have a VERY basic main.c program that I'm trying to compile, but I cannot get it to compile with a simple external assembly function. Let me show you what I have main.c: extern void putc(char c); ...
0
votes
1answer
184 views

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. ...
2
votes
3answers
430 views

PHP E-mail Efficiency (BCC vs individual e-mails)

Our web-based PHP software currently sends out a newsletter to anywhere between 1-2000 recipients. Often the newsletter has a PDF attachment (15KB-5MB). The newsletter does not need to be customized ...
0
votes
2answers
309 views

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. ...
2
votes
2answers
1k views

what is the best separator to separate multiple emails

I am using mailto link to populate bcc of users default email program. $mem_email=" "; $sql="SELECT email_address FROM employee"; $contacts = $db->query($sql); while($contact = ...
0
votes
2answers
425 views

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' . ...
0
votes
1answer
74 views

How to send an single email to number of users at one time in asp.net?

I want to send a single mail to number of user, I have extract the emails of all those in datatable now i am wondering how can i pass this datatable to BCC or CC in mail. If someone knows how to do ...
0
votes
0answers
436 views

Sending mass email with .net via BCC

i have a simple script that sends emails to our users. I have no problem sending the emails but what bothers me that i have to specify the "TO" field.. so each user that receives an email as a BCC ...
0
votes
0answers
46 views

Send Mail To Larg amout of recipients in BCC [duplicate]

Possible Duplicate: sendig Mail to BCC from asp.net I use (smtp.gmail.com) to send E-mail Messages to my web application users, i need to send Message to 1000 recipients but i want to add ...
1
vote
1answer
705 views

Block Check Character (BCC) error burst detection

Disclaimer: Not homework! Problem I've been reading up on BCC error detection for my networks course and have got a bit confused over one particular explanation in some of the slides. Given ...
0
votes
0answers
381 views

SmtpClient.Send(MailMessage) times-out with large BCC list - C#

Long time reader, first-time asker. I get a time-out when sending email to 110 BCC recipients. I'm trying to send a single email message from a website to members of my club whose website I run. ...
0
votes
3answers
580 views

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 ...
0
votes
2answers
667 views

Error in mail.Bcc.Add() ASP .Net c#

what I'm trying to achieve in my code below is to send an email for each email address that can be found in my database. My problem is when I click my send button an errors says that "The specified ...
0
votes
1answer
123 views

auto_start error in ld86 compiling

I'm trying to compile a fairly basic program under Linux and I'm having trouble with ld86. Anyone have an idea as to what auto_start is? $ bcc -c tc.c $ as86 -o ts.o ts.s $ ld86 -d ts.o tc.o ...
1
vote
2answers
4k views

PHP Email sending BCC

I know there are a few similar questions to this but I just can't get it working. Ok, I have a list of emails grabbed from my database in a variable called $emailList. I can get my code to send an ...
1
vote
1answer
759 views

How to Set a Outlook rule to classify email received by BCC?

I am in diff distribution list like A , B , C There are a lot of email BCC to A , B ,C I want to setup rules that "Move all mail bcc to specific Distribution list to specific folder " It seems ...
6
votes
2answers
810 views

Linking sqlite3.obj emits uunsatisfied forward declarations errors

I have compiled SQLIte3 database engine from sqlite3.c with BCC 55 using the following command: bcc32.exe -jb -O2 -w- -K -c -6 -u- sqlite3.c The proper sqlite3.obj file was generated. But once I ...
2
votes
4answers
250 views

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()} ...
0
votes
0answers
237 views

Hide email address from gmail if BCC

I'm finalizing my app. In this app I can send email to people. I want to send in BCC to another email address (for statistics purpose) but when I add this email address the user can see it and ...
0
votes
0answers
203 views

how to force bcc compiler to compile for 32 bit from win7 64 bit [closed]

I am running win7 ultimate 64 bit OS. Deploying my project compiled in 64 bit os will not run in windows xp pro :( In project options i did not find it. Is there any possibility to force bcc ...
1
vote
1answer
374 views

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 ...
0
votes
1answer
281 views

PHP newsletter - BCC & unsubscribing

I had developed a small newsletter system for a client that used a small script to send a bunch of emails out with attachments. It used the server the website was hosted on to send the emails. It was ...
0
votes
3answers
607 views

sending mails using MailMessage class - Limitations OF BCC and CC counts?

i have a list (1,000,000 emails addresses) of my customers and i want to send them an specific email (all of those emails are the same) using MailMessage calss. is there any limitation(s) about ...
0
votes
1answer
215 views

C++ microkernel cout problem

Ok, I'm working on my Operating Systems assignment. I need to write a microkernel which is able to do some basic stuff with threads, semaphores, events, etc. BCC 3.1 is imitating my system ...
2
votes
1answer
950 views

Bcc Field in SMTP [ showing/not showing ] problem

I'm trying to use python's smtplib to send, via gmail, an email with bcc addresses. I use this code: #imports etc... fromAddr = sender@origin.com to = [ recpt1@destinationTo.com ] cc = [ ...
1
vote
0answers
330 views

Block Check Character

Hello Faced with this problem is new byte [] {0x04, 0x30, 0x02, 0x44, 0x03} Need to define BCc How can I do? Thank you in advance I try this function, but it is not working private static byte ...
-1
votes
2answers
473 views

How to send BCC via MFMailComposeViewController in iPhone SDK?

One part of my app sends an e-mail with an attachment. I'm using the MFMailComposeViewController class, and all is well. I just would like to know if I can send a stealth BCC message to myself, just ...
1
vote
3answers
757 views

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 ...
2
votes
2answers
295 views

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 ...
3
votes
4answers
567 views

How to debug a traceless crash

During development of out application we have in special encountered a really nasty bug. The symptom is quite simply that the process disappears. The logs just end abruptly, no crash dumps or anything ...
2
votes
5answers
696 views

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 ...
3
votes
1answer
2k views

PHP SMTP BCC, not going through

Recipients named in the BCC/CC (in the headers) are not received. I've found a couple of posts with similar questions, no answers... The code is below, the question is: "Have any of you had similar ...
0
votes
2answers
330 views

Last recipient set using office interop always ends up in TO field in outlook2010 even if the type is BCC or CC

I am having problems setting the BCC field in Outlook 2010. This is my situation (using Microsoft.Office.Interop.Outlook): string bcc = "example@example.com"; Recipient recipient = ...
0
votes
1answer
193 views

PHP email and bcc question

I have a list of emails. I want to email all of them the same email. So I am going to use the BCC field. However, I want the TO field to show the email of whoever receives it. How do I do this?

1 2