使用 Python 2.3 通过 SSL 发送邮件
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许你可以只使用
starttls()
就像:
在 SMTP_SSL 文档中您可以找到:
Maybe you can just use
starttls()
just like:
In SMTP_SSL doc you can find: