如何使用outlook帐户在Python中使用smtplib发送电子邮件



我关注这篇文章是为了使用我的outlook帐户发送电子邮件:通过SMTP Python 发送电子邮件时遇到问题

我使用了它,并制作了一个简单的测试代码,如下

username='****'
password='***'
mailServer = smtplib.SMTP('smtp-mail.outlook.com', 587)
mailServer.ehlo()
mailServer.starttls()
mailServer.ehlo()
mailServer.login(username, password)

但它失败了这个错误

Traceback (most recent call last):
File "<ipython-input-3-67589181ed6a>", line 7, in <module>
mailServer.login(username, password)
File "/home/saber/miniconda3/envs/explore/lib/python3.6/smtplib.py", line 730, in login
raise last_exception
File "/home/saber/miniconda3/envs/explore/lib/python3.6/smtplib.py", line 721, in login
initial_response_ok=initial_response_ok)
File "/home/saber/miniconda3/envs/explore/lib/python3.6/smtplib.py", line 642, in auth
raise SMTPAuthenticationError(code, resp)
SMTPAuthenticationError: (535, b'5.7.3 Authentication unsuccessful [YQXPR0101CA0037.CANPRD01.PROD.OUTLOOK.COM]')

知道可能是什么问题吗?

您能更改帐户来测试它吗?请参考以下代码:

"""The first step is to create an SMTP object, each object is used for connection 
with one server."""
import smtplib
server = smtplib.SMTP('smtp.gmail.com', 587)
#Next, log in to the server
server.login("youremailusername", "password")
#Send the mail
msg = "
Hello!" # The /n separates the message from the headers
server.sendmail("you@gmail.com", "target@example.com", msg)

相关链接:使用Python发送电子邮件

最新更新