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.
这是
smtp = smtplib.SMTP(server)
我想使用 和 的附加参数使其更具可定制timeout性port。
timeout
port
我想使用在任何主机上运行的端口(但不想使用端口 25)使用 SMTP python 发送电子邮件,但我无法开始timeout使用它。
您是否尝试过设置port和timeout?
smtplib.SMTP(server, port=1234, local_hostname='your_local_host', timeout=10)
或者尝试阅读文档?