发送包含嵌入图像的多部分 HTML 电子邮件
- 2025-02-21 08:48:00
- admin 原创
- 18
问题描述:
我一直在研究 python 中的电子邮件模块,但我想知道如何嵌入 html 中包含的图像。
例如,如果身体是这样的
<img src="../path/image.png"></img>
我想将image.png嵌入到电子邮件中,src
属性应该替换为content-id
。有人知道怎么做吗?
解决方案 1:
这是我找到的一个例子。
配方 473810:发送带有嵌入图像和纯文本替代的 HTML 电子邮件:
对于那些希望发送具有丰富文本、布局和图形的电子邮件的人来说,HTML 是首选方法。通常希望将图形嵌入到邮件中,以便收件人可以直接显示邮件,而无需进一步下载。
有些邮件代理不支持 HTML 或其用户更喜欢接收纯文本消息。HTML 消息的发件人应为这些用户提供纯文本消息作为替代。
此配方发送一条带有单个嵌入图像和备用纯文本消息的简短 HTML 消息。
# Send an HTML email with an embedded image and a plain text message for
# email clients that don't want to display the HTML.
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
from email.MIMEImage import MIMEImage
# Define these once; use them twice!
strFrom = 'from@example.com'
strTo = 'to@example.com'
# Create the root message and fill in the from, to, and subject headers
msgRoot = MIMEMultipart('related')
msgRoot['Subject'] = 'test message'
msgRoot['From'] = strFrom
msgRoot['To'] = strTo
msgRoot.preamble = 'This is a multi-part message in MIME format.'
# Encapsulate the plain and HTML versions of the message body in an
# 'alternative' part, so message agents can decide which they want to display.
msgAlternative = MIMEMultipart('alternative')
msgRoot.attach(msgAlternative)
msgText = MIMEText('This is the alternative plain text message.')
msgAlternative.attach(msgText)
# We reference the image in the IMG SRC attribute by the ID we give it below
msgText = MIMEText('<b>Some <i>HTML</i> text</b> and an image.<br><img src="cid:image1"><br>Nifty!', 'html')
msgAlternative.attach(msgText)
# This example assumes the image is in the current directory
fp = open('test.jpg', 'rb')
msgImage = MIMEImage(fp.read())
fp.close()
# Define the image's ID as referenced above
msgImage.add_header('Content-ID', '<image1>')
msgRoot.attach(msgImage)
# Send the email (this example assumes SMTP authentication is required)
import smtplib
smtp = smtplib.SMTP()
smtp.connect('smtp.example.com')
smtp.login('exampleuser', 'examplepass')
smtp.sendmail(strFrom, strTo, msgRoot.as_string())
smtp.quit()
解决方案 2:
适用于 Python 3.4 及以上版本。
接受的答案非常好,但仅适用于较旧的 Python 版本(2.x 和 3.3)。我认为它需要更新。
以下是在较新的 Python 版本(3.4 及以上版本)中执行此操作的方法:
from email.message import EmailMessage
from email.utils import make_msgid
import mimetypes
msg = EmailMessage()
# generic email headers
msg['Subject'] = 'Hello there'
msg['From'] = 'ABCD <abcd@xyz.com>'
msg['To'] = 'PQRS <pqrs@xyz.com>'
# set the plain text body
msg.set_content('This is a plain text body.')
# now create a Content-ID for the image
image_cid = make_msgid(domain='xyz.com')
# if `domain` argument isn't provided, it will
# use your computer's name
# set an alternative html body
msg.add_alternative("""\n<html>
<body>
<p>This is an HTML body.<br>
It also has an image.
</p>
<img src="cid:{image_cid}">
</body>
</html>
""".format(image_cid=image_cid[1:-1]), subtype='html')
# image_cid looks like <long.random.number@xyz.com>
# to use it as the img src, we don't need `<` or `>`
# so we use [1:-1] to strip them off
# now open the image and attach it to the email
with open('path/to/image.jpg', 'rb') as img:
# know the Content-Type of the image
maintype, subtype = mimetypes.guess_type(img.name)[0].split('/')
# attach it
msg.get_payload()[1].add_related(img.read(),
maintype=maintype,
subtype=subtype,
cid=image_cid)
# the message is ready now
# you can write it to a file
# or send it using smtplib
解决方案 3:
我意识到 SMTP 和电子邮件库的某些功能非常麻烦,因此我认为必须采取一些措施。我创建了一个库,使将图像嵌入 HTML 更加容易:
from redmail import EmailSender
email = EmailSender(host="<SMTP HOST>", port=0)
email.send(
sender="me@example.com",
receivers=["you@example.com"]
subject="An email with image",
html="""
<h1>Look at this:</h1>
{{ my_image }}
""",
body_images={
"my_image": "path/to/image.png"
}
)
抱歉,我做了些宣传,但我觉得它非常棒。你可以将图像作为 Matplotlib Figure
、 Pillow提供Image
,或者假设bytes
你的图像是这些格式。它使用 Jinja 进行模板化。
如果需要控制图片的大小,也可以这样做:
email.send(
sender="me@example.com",
receivers=["you@example.com"]
subject="An email with image",
html="""
<h1>Look at this:</h1>
<img src="{{ my_image.src }}" width=200 height=300>
""",
body_images={
"my_image": "path/to/image.png"
}
)
你可以直接使用 pip 安装它:
pip install redmail
它(希望)是您发送电子邮件所需的全部功能(还有更多功能),并且经过了充分测试。我还编写了大量文档:https://red-mail.readthedocs.io/en/latest/ ,源代码可在此处找到。
相关推荐
热门文章
项目管理软件有哪些?
- 2025年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 项目管理必备:盘点2024年13款好用的项目管理软件
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
热门标签
云禅道AD