Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Python 2.3,我需要使用 SSL 发送电子邮件。
根据文档,SMTP_SSL 是在 Python 2.6 中添加的。
有没有办法在 Python 2.3 中使用 SSL(可能使用第三方模块)?
也许你可以starttls() 像这样使用:
starttls()
smtp = smtplib.SMTP(mailhost) smtp.starttls()
在 SMTP_SSL 文档中,您可以找到:
SMTP_SSL 应该用于从连接开始就需要 SSL 并且不适合使用 starttls() 的情况。