Tagged Questions
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
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 = [ ...
0
votes
1answer
442 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?