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 ...
2
votes
1answer
159 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 = [ ...
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 ...
0
votes
1answer
652 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 ...