我的通过msft outlook.com发送电子邮件的代码在Windows上有效,但在我的Linux机器上却无效。任何想法如何解决这个问题?
import smtplib
smtp = smtplib.SMTP('smtp.live.com', port=587)
smtp.starttls()
smtp.login(username, password)
SMTPServerDisconnected: Connection unexpectedly closed:
[Errno 1] _ssl.c:1359: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
相关分类