#31050: EmailMessage doesn't strip empty addresses from recipients in message
headers
-----------------------------------------------+------------------------
               Reporter:  Konstantin Alekseev  |          Owner:  nobody
                   Type:  Bug                  |         Status:  new
              Component:  Core (Mail)          |        Version:  2.2
               Severity:  Normal               |       Keywords:
           Triage Stage:  Unreviewed           |      Has patch:  1
    Needs documentation:  0                    |    Needs tests:  0
Patch needs improvement:  0                    |  Easy pickings:  0
                  UI/UX:  0                    |
-----------------------------------------------+------------------------
 Example


 {{{
         email = EmailMessage(
             'Subject', 'Content', '[email protected]', ['[email protected]',
 ''],
             cc=['[email protected]', ''],
             bcc=['', '[email protected]'],
             reply_to=['', None],
         )

         msg = email.message()
         msg['To'] == '[email protected], '
         msg['Cc'] == ', [email protected]'
         msg['Reply-To'] == ', None'
 }}}

 Fix [https://github.com/django/django/pull/12164]

-- 
Ticket URL: <https://code.djangoproject.com/ticket/31050>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.011c2529b4d0521e6b87b694333802ac%40djangoproject.com.

Reply via email to