我的目标是使用smtplib模块保存脚本发送的电子邮件。
以下是我发送电子邮件的方式:
#Creating a multipart body
msg = MIMEMultipart()
#Attaching files to the email
for file in tc['attachments']:
try:
part = email.mime.base.MIMEBase('application', "octet-stream")
part.set_payload( open(file, "rb").read())
email.encoders.encode_base64(part)
part.add_header('Content-Disposition', 'attachment; filename="%s"' % os.path.basename(file))
msg.attach(part)
except Exception as err:
print "Exception when attaching file %s to the email: \n %s" % (file, err)
print traceback.print_exc()
#Connecting to the SMTP server
smtp = smtplib.SMTP("1.2.3.4")
#Sending the email
try:
status = smtp.sendmail(msg['From'], send_to, msg.as_string())
print status
smtp.close()
except Exception, e:
print "Unable to send the email. Exception seen: %s" % e
现在,如果我将msg.as_string()
保存到变量,它只保存电子邮件的正文,但我希望发送完整的电子邮件。
我查看了smtplib
模块的文档,但找不到用于打印电子邮件标题的旋钮。
是否有任何黑客攻击(比如使用其他模块来监控流量等)我可以用来按照我从脚本发送的方式保存电子邮件?
答案 0 :(得分:0)
您可以使用str()
获取包含标题的整个电子邮件的字符串版本:
save_msg = str(msg)