Changes between Initial Version and Version 1 of Ticket #35390, comment 1


Ignore:
Timestamp:
Apr 19, 2024, 6:35:05 AM (4 weeks ago)
Author:
Bhuvnesh

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35390, comment 1

    initial v1  
    1 The reason why Bcc is missing message function is because we do not want to list bcc addresses of mail in the header (as its a blind copy), instead we use [https://github.com/django/django/blob/main/django/core/mail/message.py#L288 recipients] to include all email addresses (to, cc and bcc) to which mail is to be sent. For better understanding, you can have a look at [https://github.com/django/django/blob/main/tests/mail/tests.py#L145 this test.]
     1The reason why Bcc is missing in message function is because we do not want to list bcc addresses of mail in the header (as its a blind copy), instead we use [https://github.com/django/django/blob/main/django/core/mail/message.py#L288 recipients] to include all email addresses (to, cc and bcc) to which mail is to be sent. For better understanding, you can have a look at [https://github.com/django/django/blob/main/tests/mail/tests.py#L145 this test.]
    22
    33I'm closing this ticket for now. If you are facing some issue while sending an email, feel free to reopen this ticket along with proper steps to reproduce it.
Back to Top