我有一个关于在 Python 中发送带有 ZIP 附件的电子邮件的问题。这是我的做法:
def send_mail(send_from, send_to, subject, text, files=[], server="localhost"):
assert type(send_to)==list
assert type(files)==list
msg = MIMEMultipart()
msg['From'] = send_from
msg['To'] = COMMASPACE.join(send_to)
msg['Date'] = formatdate(localtime=True)
msg['Subject'] = subject
msg.attach( MIMEText(text) )
for f in files:
remotezip = urllib2.urlopen(f)
#zipinmemory = io.BytesIO(remotezip.read())
#zip = zipfile.ZipFile(zipinmemory)
part = MIMEBase('application', 'octet-stream')
part.set_payload( remotezip.read())
Encoders.encode_base64(part)
part.add_header('Content-Disposition', 'attachment; filename="%s"' % os.path.basename(f))
msg.attach(part)
smtp = smtplib.SMTP('smtp.gmail.com:587')
smtp.starttls()
smtp.login('username','password')
smtp.sendmail(send_from, send_to, msg.as_string())
smtp.close()
由于我将 ZIP 文件托管在我的 Web 服务器上,因此我正在使用 URLOpen 阅读它。
此代码成功发送带有附件的电子邮件。但 ZIP 文件始终为 0KB。确信在读取文件时存在一些问题。
请告诉我。谢谢你的帮助!