在 Python 中发送带有 HTML+plain_text 电子邮件的 PDF 附件

Posted

技术标签:

【中文标题】在 Python 中发送带有 HTML+plain_text 电子邮件的 PDF 附件【英文标题】:Sending a PDF attachment with a HTML+plain_text email in Python 【发布时间】:2014-05-12 10:24:01 【问题描述】:

我正在尝试发送带有电子邮件正文的 PDF 附件,该电子邮件正文总结了 PDF 文件的内容。电子邮件正文采用 html 和纯文本格式。

我正在使用以下代码来构建电子邮件消息对象:

#Part A
logging.debug("   Building standard email with HTML and Plain Text")
msg = MIMEMultipart("alternative")
msg.attach(MIMEText(email_obj.attachments["plain_text"], "plain", _charset="utf-8"))
msg.attach(MIMEText(email_obj.attachments["html_text"], "html", _charset="utf-8"))

#Part B
logging.debug("   Adding PDF report")
pdf_part = MIMEApplication(base64.decodestring(email_obj.attachments["pdf_report"]), "pdf")
pdf_part.add_header('Content-Disposition', 'attachment', filename="pdf_report.pdf")
logging.debug("   Attaching PDF report")
msg.attach(pdf_part)

我的问题是,如果我附加 PDF,我的电子邮件正文就会消失。如果我注释掉附加 PDF(B 部分)的代码,就会出现电子邮件正文。

除非我弄错了,我的 PDF 附件看起来好像覆盖了电子邮件正文。

【问题讨论】:

【参考方案1】:

这样的消息应该有更复杂的结构。消息本身包含两个“***”MIME 部分,并且内容类型为“multipart/mixed”。这些 MIME 部分中的第一个具有“多部分/替代”类型,具有两个子部分,一个用于纯文本,另一个用于 HTML。第二个主要部分是PDF附件

pdfAttachment = MIMEApplication(pdf, _subtype = "pdf")
pdfAttachment.add_header('content-disposition', 'attachment', filename = ('utf-8', '', 'payment.pdf'))
text = MIMEMultipart('alternative')
text.attach(MIMEText("Some plain text", "plain", _charset="utf-8"))
text.attach(MIMEText("<html><head>Some HTML text</head><body><h1>Some HTML Text</h1> Another line of text</body></html>", "html", _charset="utf-8"))
message = MIMEMultipart('mixed')
message.attach(text)
message.attach(pdfAttachment)
message['Subject'] = 'Test multipart message'
f = open("message.msg", "wb")
f.write(bytes(message.as_string(), 'utf-8'))
f.close()

您可以尝试在您最喜欢的邮件程序(邮件用户代理)中打开邮件的“源视图”并查看自己(Thunderbird 中的 Ctrl-U)

【讨论】:

以上是关于在 Python 中发送带有 HTML+plain_text 电子邮件的 PDF 附件的主要内容,如果未能解决你的问题,请参考以下文章

python--smtp邮件使用

在带有附件的电子邮件中将内容类型从 text/plain 转换为 text/html

Python发送邮件

Python发送邮件

python发送网易邮件

实现Python代码发送邮件