smtplib.SMTPRecipientsRefused ::中继访问被拒绝

时间:2019-05-01 12:12:15

标签: python-3.x smtp smtplib

我为组织使用自己的SMTP服务器。它不需要任何登录身份验证。当我使用下面的代码。它使我出错。

message = """<message>"""

smtpObj = smtplib.SMTP('server',25)
# 
smtpObj.sendmail(from_addr = "server",to_addrs="xyz.123@example.com", msg=message)

错误:

smtplib.SMTPRecipientsRefused: {'xyz.123@example.com': (454, b'4.7.1 <xyz.123@example.com>: Relay access denied')}

0 个答案:

没有答案