我为组织使用自己的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')}