Re: Is blind carbon copy implemented?

2015-04-01 Thread Den
Thanks for the answers. Excuse me for panic. Actually, there is no need in my code. One can see that smtp backend makes use of message.recepients() while console backend - don't

Re: Is blind carbon copy implemented?

2015-04-01 Thread monoBOT
If you want to use BCC .. you should use EmailMessage. https://docs.djangoproject.com/en/1.7/topics/email/#django.core.mail.EmailMessage 2015-04-01 17:35 GMT+02:00 Den : > Hello, everyone. > > First of all, bcc doesn't work even in console email backend for me. > > I'm

Re: Is blind carbon copy implemented?

2015-04-01 Thread Stephen J. Butler
BCC recipients don't get included in the message headers. If they were stuffed there, then they wouldn't be "bilnd", they would appear in every copy of the message! The code that includes them is here: https://github.com/django/django/blob/stable/1.6.x/django/core/mail/message.py#L263 You say it

Is blind carbon copy implemented?

2015-04-01 Thread Den
Hello, everyone. First of all, bcc doesn't work even in console email backend for me. I'm unable to find code that processes bcc case. Something like that for CC . Is it implemented at all? Thanks in