This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Fotoblysk
Recipients Fotoblysk, barry, r.david.murray
Date 2019-03-15.13:18:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552655900.57.0.530825702843.issue36303@roundup.psfhosted.org>
In-reply-to
Content
Script reproducing this behavior:

```python3
from email.mime.text import MIMEText
msg = MIMEText('<div/>', 'html')
msg["To"] = "this.email.shouldnt.be.printed@nokia.com"
msg["To"] = "valid.email@nokia.com"
print(msg["To"])
```

stdout:
```
this.email.shouldnt.be.printed@nokia.com
```
History
Date User Action Args
2019-03-15 13:18:20Fotoblysksetrecipients: + Fotoblysk, barry, r.david.murray
2019-03-15 13:18:20Fotoblysksetmessageid: <1552655900.57.0.530825702843.issue36303@roundup.psfhosted.org>
2019-03-15 13:18:20Fotoblysklinkissue36303 messages
2019-03-15 13:18:20Fotoblyskcreate