ConnectionRefusedError:[WinError 10061],Python

时间:2017-01-08 09:31:25

标签: python python-3.x

我使用的是Python 3.5.2,Windows 10。

我正在尝试使用python发送电子邮件,这可能是最简单的方式。我看到其他一些帖子有相同的错误,但他们正在尝试创建一个服务器。我不能发这样的电子邮件吗?这是我的代码:

from email.mime.text import MIMEText
import smtplib

msg = MIMEText("Test")
msg['Subject'] = 'A Test Message'
msg['From']='Sender'
msg['To'] = 'Recipient'

s = smtplib.SMTP('localhost')
s.sendmail('Sender', ['Recipient'], msg.as_string())

当我用两个现有的电子邮件地址替换Sender和Recipient时,我收到以下错误:

ConnectionRefusedError:[WinError 10061]无法建立连接,因为目标计算机主动拒绝了

知道错误发生的原因吗?错误似乎在s = smtplib.SMTP('localhost')行

(顺便说一下,我在网上发现这个代码不是我的代码)

0 个答案:

没有答案