我有一个非常简单的发送邮件的程序,使用pythons
smtplib
通过安全套接字发送邮件。由于某些原因,创建套接字需要大约
80 seconds
. This is the code I use:
with smtplib.SMTP_SSL(config['SMTP_HOST'], config['SMTP_PORT']) as server:
# Send mail here
套接字创建后,一切都运行得很顺畅和快速。对这个问题的一个临时 "修复 "是传递一个小的超时,像这样。
with smtplib.SMTP_SSL(config['SMTP_HOST'],config['SMTP_PORT'], timeout=0.5) as server:
# Send mail here