Я хочу отправить простое текстовое сообщение пользователю с локального сервера smtp. Когда я использую следующий код, я получаю следующую ошибку
#!/usr/bin/python
import smtplib
receivers = ['to@todomain.com']
message = "hello"
Subject: "SMTP e-mail test
This is a test e-mail message."
try:
smtpObj = smtplib.SMTP('localhost')
smtpObj.sendmail(sender, receivers, message)
print "Successfully sent email"
except SMTPException:
print "Error: unable to send email"
Я получаю следующую ошибку:
[WinError 10061] No connection could be made because the target machine actively refused it
Как устранить эту ошибку.