我正在编写一个Python程序来发送电子邮件。但每次执行该条款时:
smtpserver = smtplib.SMTP("smtp.gmail.com",587)
它将在此处阻止,并始终保持执行状态,没有任何提示和错误。我不知道为什么。任何人都可以帮助我吗?
代码如下: 导入smtplib
to = 'toemail@gmail.com'
gmail_user = 'user@gmail.com'
gmail_pwd = 'password'
smtpserver = smtplib.SMTP("smtp.gmail.com",587)
smtpserver.ehlo()
smtpserver.starttls()
smtpserver.ehlo
smtpserver.login(gmail_user, gmail_pwd)
header = 'To:' + to + '\n' + 'From: ' + gmail_user + '\n' + 'Subject:testing \n'
print header
msg = header + '\n this is test msg from mkyong.com \n\n'
smtpserver.sendmail(gmail_user, to, msg)
print 'done!'
smtpserver.close()
答案 0 :(得分:3)
也许我迟到了4年,但这对我有用,可能会帮助别人!
server = smtplib.SMTP("smtp.gmail.com", 587, None, 30)
答案 1 :(得分:2)
连接可能存在一些问题(也许它被您的代理或防火墙阻止了?)并且超时对您来说可能相当大,以至于没有看到它进一步发展。
The documentation of smtplib.SMTP
说:
class smtplib.SMTP([host[, port[, local_hostname[, timeout]]]])
(...)如果指定的
SMTPConnectError
没有正确响应,则会引发host
。可选的timeout
参数指定阻塞操作(如连接尝试)的超时秒数(如果未指定,将使用全局默认超时设置)。
尝试自己指定超时:
smtpserver = smtplib.SMTP("smtp.gmail.com", 587, timeout=30)
答案 2 :(得分:1)
作为参考,cpython smtplib正在阻止。也就是说,它在连接时会阻止GIL(即Python)。尽管声称GIL是在I / O上发布的,但它只在某些I / O上发布,并且SMTP连接不是这样。 要使其异步,您需要将邮件发送到另一个进程或线程,具体取决于您的具体情况。
答案 3 :(得分:0)
我遇到了类似的问题,上面的答案对我都不起作用。我的问题是,由于我的smtp服务器使用SSL。我需要使用smtplib.SMTP_SSL
而不是smtplib.SMTP
。我只是在下面发布我的完整工作代码。
在执行之前,请确保更改req
和email_config
的值。
req = {
"email": "to@something.com",
"subject": "new e-mail from python",
"body": "Hi,\nI am a bot",
}
email_config = {
"server": "smtp.orange.fr",
"port": 465,
"username": "username@orange.fr",
"password": "mypassword",
"email": "fromwhichemail@orange.fr",
}
#!/usr/bin/env python3
import smtplib
from email import encoders
from email.mime.base import MIMEBase
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
class Mail(object):
def __init__(self, email_config):
self.email = email_config["email"]
self.password = email_config["password"]
self.server = email_config["server"]
self.port = email_config["port"]
print(f"Logging to {self.server}:{self.port}")
session = smtplib.SMTP_SSL(self.server, self.port)
print(f"Calling ehlo")
session.ehlo()
print(f"Calling login")
session.login(self.email, self.password)
self.session = session
def send_message(self, subject, to, body, filename):
# Create a multipart message and set headers
message = MIMEMultipart()
message["From"] = self.email
message["To"] = to
message["Subject"] = subject
message["Bcc"] = ""
# Add body to email
message.attach(MIMEText(body, "plain"))
print(f"tot: {to}")
print(f"subject: {subject}")
print(f"body: {body}")
if filename is not None:
# Open PDF file in binary mode
with open(filename, "rb") as attachment:
part = MIMEBase("application", "octet-stream")
part.set_payload(attachment.read())
# Encode file in ASCII characters to send by email
encoders.encode_base64(part)
# Add header as key/value pair to attachment part
part.add_header(
"Content-Disposition",
f"attachment; filename= {filename}",)
# Add attachment to message and convert message to string
message.attach(part)
# Send e-mail
print(f"Sending e-mail...")
self.session.sendmail(self.email, to, message.as_string())
if __name__ == "__main__":
req = {
"email": "to@something.com",
"subject": "new e-mail from python",
"body": "Hi,\nI am a bot",
}
email_config = {
"server": "smtp.orange.fr",
"port": 465,
"username": "username@orange.fr",
"password": "mypassword",
"email": "fromwhichemail@orange.fr",
}
m = Mail(email_config)
if "pdf_file" in req:
m.send_message(req["subject"], req["email"], req["body"], req["pdf_file"])
else:
m.send_message(req["subject"], req["email"], req["body"], None)