无法与 OVH 的 SMTP 建立连接
Can't establish connection with the OVH's SMTP
from smtplib import SMTP
SMTP("SSL0.OVH.NET", 465)
SMTPServerDisconnected: 连接意外关闭
嗯,这个错误消息令人沮丧,我不知道我能做什么!
from smtplib import SMTP
SMTP("SSL0.OVH.NET", 587)
我不知道为什么,但这行得通。
OVH 应该是 993 发送到和 465 发送,但它与 587 一起工作更好,应该可以从 gmail 发送。
from smtplib import SMTP
SMTP("SSL0.OVH.NET", 465)
SMTPServerDisconnected: 连接意外关闭
嗯,这个错误消息令人沮丧,我不知道我能做什么!
from smtplib import SMTP
SMTP("SSL0.OVH.NET", 587)
我不知道为什么,但这行得通。 OVH 应该是 993 发送到和 465 发送,但它与 587 一起工作更好,应该可以从 gmail 发送。