[issue41023] smtplib does not handle Unicode characters

2020-06-29 Thread Jay Patel
Change by Jay Patel : Removed file: https://bugs.python.org/file49250/providing_only_ascii_characters.png ___ Python tracker ___ ___ Python

[issue41023] smtplib does not handle Unicode characters

2020-06-18 Thread R. David Murray
R. David Murray added the comment: If you use the 'sendmail' function for sending, then it is entirely your responsibility to turn the email into "wire format". Unicode is not wire format, but if you give sendmail a string that only has ascii in it it nicely converts it to binary for you.

[issue41023] smtplib does not handle Unicode characters

2020-06-18 Thread Jay Patel
Change by Jay Patel : Added file: https://bugs.python.org/file49252/providing_mail_options_in_sendmail.png ___ Python tracker ___ ___ Pytho

[issue41023] smtplib does not handle Unicode characters

2020-06-18 Thread Jay Patel
Change by Jay Patel : Added file: https://bugs.python.org/file49251/providing_Unicode_characters_in_email_body.png ___ Python tracker ___ _

[issue41023] smtplib does not handle Unicode characters

2020-06-18 Thread Jay Patel
Jay Patel added the comment: Screenshot for the case, where only the 'raw_email' variable contains only 'ascii' characters. -- Added file: https://bugs.python.org/file49250/providing_only_ascii_characters.png ___ Python tracker

[issue41023] smtplib does not handle Unicode characters

2020-06-18 Thread Jay Patel
New submission from Jay Patel : According to the user requirements, I need to send an email, which is provided as a raw email, i.e., the contents of email are provided in form of headers. To accomplish this I am using the methods provided in the "send_rawemail_demo.py" file (attached below).