Tagged Questions
7
votes
1answer
3k views
Sending BCC emails using a SMTP server?
I've had this noted down on some of my code for a while:
/**
* Add a BCC.
*
* Note that according to the conventions of the SMTP protocol all
* addresses, including BCC addresses, are included in ...
4
votes
3answers
2k views
Python: how to store a draft email with BCC recipients to Exchange Server via IMAP?
I try to store a draft e-mail via IMAP to a folder running on MS Exchange. Everything ok, except that Bcc recipients don't get shown in the draft message stored on the server. Bcc recipients also ...
2
votes
4answers
61 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()} ...
2
votes
2answers
92 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 ...
2
votes
5answers
3k views
Sending Mail via SMTP in C# using BCC without TO
I am trying to use the System.Net.Mail.MailMessage class in C# to create an email that is sent to a list of email addresses all via BCC. I do not want to include a TO address, but it seems that I must ...
1
vote
8answers
688 views
Is it a good idea to trust BCC to not reveal other people's addresses?
I'm using PHPMailer to send emails with SMTP from my script. The emails in question are actually cell numbers utilizing email-to-SMS gateways. Now, ideally I want to build up a big BCC list to send ...
1
vote
2answers
1k views
Outlook VBA to BCC emails sent not working in Outlook 2007
Inserted code in ItemSend and saved the ThisOutlookSession module. It worked once and no longer works. Before anyone asks; it was saved as BVaproject.OTM and is still there when I open the module ...
0
votes
0answers
50 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
37 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
651 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
1answer
128 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?
0
votes
1answer
441 views
Send mail with python using bcc
I'm working with django, i need send a mail to many emails, i want to do this with a high level library like python-mailer, but i need use bcc field, any suggestions?
-1
votes
2answers
238 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 ...