I am trying to send an email from my python project. But my method doesn't work with russian language.
import smtplib
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login('[email protected]', 'pasword')
server.sendmail('[email protected]', '[email protected]', 'привет')
server.quit()
I have this error: UnicodeEncodeError: 'ascii' codec can't encode character in position 0-4: ordinal not range(128)
For English it is working.
Python 3.6
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…