使用 Python 2.3 通过 SSL 发送邮件

发布于 2024-12-12 20:20:46 字数 218 浏览 0 评论 0原文

我正在使用 Python 2.3,并且需要使用 SSL 发送电子邮件。

根据文档,SMTP_SSL是在Python 2.6中添加的。

有没有办法在 Python 2.3 中也使用 SSL(也许使用第三方模块)?

I'm working with Python 2.3 and I need to send e-mails with SSL.

According to the docs, SMTP_SSL was added in Python 2.6.

Is there a way to use SSL also in Python 2.3 (maybe with a third-party module)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾听心声的旋律 2024-12-19 20:20:46

也许你可以只使用 starttls()
就像:

smtp = smtplib.SMTP(mailhost)
smtp.starttls()

在 SMTP_SSL 文档中您可以找到:

SMTP_SSL 应用于需要 SSL 的情况
连接开始并使用 starttls() 是不合适的。

Maybe you can just use starttls()
just like:

smtp = smtplib.SMTP(mailhost)
smtp.starttls()

In SMTP_SSL doc you can find:

SMTP_SSL should be used for situations where SSL is required from the
beginning of the connection and using starttls() is not appropriate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文