在 Python 中从 Zimbra 发送电子邮件

Send email from Zimbra in Python

如何在 Python 中从 Zimbra 发送电子邮件。 This 是 gmail 的示例,是否有 Zimbra 的示例?

这是信息:

Zimbra 服务器:10.0.0.8

登录邮箱:https:\10.0.0.8

我的测试邮件:test_maas@b2mportal.gemlikgis.com

尝试使用:

import smtplib

 

server = smtplib.SMTP('10.0.0.8', 25)

server.starttls()

server.login("mail@example.com", "IAmAStrongPassword")

 

msg = "Help me with my math, please!"

server.sendmail("superteacher@math.com", "THE EMAIL ADDRESS TO SEND TO", msg)

server.quit()

希望对你有用!