CPanel 和从 Python SMTP 发送电子邮件

CPanel and sending Email from Python SMTP

提问人:sqwale 提问时间:10/2/2023 更新时间:10/2/2023 访问量:31

问:

我发现了一个托管在 CPanel 上的系统。但是,我有一个服务在另一台用 Python 编写的服务器上运行。这个python服务是发送电子邮件的,但是域名 testservice.com 在CPanel上,包括邮件交换。

CPanel 为我提供了 SMTP 的配置

SMTP servver: mail.testservice.com PORT: 465, uername: [email protected],

context = ssl.create_default_context()

with smtplib.SMTP_SSL("mail.testservice.com", 465, context=context) as server:
    server.login("[email protected]", 'xxxx')
    server.sendmail('[email protected]', '[email protected]', 'hello world')

我目前正在本地主机上测试它,并收到以下错误:

smtplib.SMTPDataError: (550, b'Your FROM address ( testservice.com ,  ) must match your\nauthenticated email domain ( testservice.com ). Treating this as a\nspoofed email.')
python-3.x 电子邮件 cpanel smtplib

评论


答: 暂无答案