Python - 发送带有多个图像附件的电子邮件

Posted

技术标签:

【中文标题】Python - 发送带有多个图像附件的电子邮件【英文标题】:Python - Send email with multiple image attachments 【发布时间】:2018-03-09 16:54:27 【问题描述】:

我正在尝试使用带有多个图像附件的 Python 发送电子邮件。但是,使用下面的代码,我可以在文本正文中包含第一张图片,但第二张图片作为附件附加到电子邮件中。有没有办法可以在 html 正文中获取两个图像?以下是我当前的代码。

from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.image import MIMEImage

strFrom = 'user@provider.com'
strTo = 'user@provider.com'

msgRoot = MIMEMultipart('related')
msgRoot['Subject'] = 'Test message'
msgRoot['From'] = 'user@provider.com'
msgRoot['To'] = 'user@provider.com'
msgRoot.preamble = 'This is a multi-part message in MIME format.'

msgAlternative = MIMEMultipart('alternative')
msgRoot.attach(msgAlternative)

msgText = MIMEText('This is the alternative plain text message.')
msgAlternative.attach(msgText)

msgText = MIMEText('<b>Test HTML with Images</b><br><br>'
                   '<img src="cid:image1">'
                   '<br>'
                   '<br>'
                   '<img src="cid:image2">'
                   '<br>'
                   '<br>'
                   'Sending Two Attachments', 'html')

msgAlternative.attach(msgText)

fp = open('image1.png', 'rb')
msgImage = MIMEImage(fp.read())
fp.close()
msgImage.add_header('Content-ID', '<image1>')
msgRoot.attach(msgImage)

fp = open('image2.png', 'rb')
msgImage2 = MIMEImage(fp.read())
fp.close()
msgImage.add_header('Content-ID', '<image2>')
msgRoot.attach(msgImage2)

import smtplib
smtp = smtplib.SMTP('localhost')
smtp.sendmail(strFrom, strTo, msgRoot.as_string())
smtp.quit()

【问题讨论】:

我不太确定,代码似乎还可以。我找到了这个article about emailing multiple inline images in python,希望对您有所帮助。 【参考方案1】:

您是否尝试将MIMEMultipart 更改为mixed。我有包含图像的代码并使用混合模式对我来说效果很好。

msgRoot = MIMEMultipart('mixed')
msgAlternative = MIMEMultipart('mixed')

【讨论】:

【参考方案2】:

我认为代码应该是:

fp = open('image1.png', 'rb')
msgImage1 = MIMEImage(fp.read())
fp.close()
msgImage.add_header('Content-ID', '<image1>')
msgRoot.attach(msgImage1)

fp = open('image2.png', 'rb')
msgImage2 = MIMEImage(fp.read())
fp.close()
msgImage.add_header('Content-ID', '<image2>')
msgRoot.attach(msgImage2)

您需要指定它是 image1 而不仅仅是 image

【讨论】:

没错,这就是我的意思。我在工作,不能很好地编辑这个。谢谢巴里! 示例代码基本正确,'add_header'行需要分别引用msgImage1和msgImage2。

以上是关于Python - 发送带有多个图像附件的电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 中发送带有多个附件的电子邮件

Python:多部分 html 电子邮件通过嵌入式图像和附件发送

如何使用 Qt 发送带有图像附件的电子邮件?

Android - 发送带有返回 0KB 大小的图像附件的电子邮件

使用 smtp 发送带有多个附件的电子邮件

从您的应用程序发送一封带有 Swift 附件图像的电子邮件