发送包含嵌入图像的多部分 html 电子邮件 [英] Sending Multipart html emails which contain embedded images

查看:43
本文介绍了发送包含嵌入图像的多部分 html 电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在使用 python 中的电子邮件模块,但我想知道如何嵌入包含在 html 中的图像.

I've been playing around with the email module in python but I want to be able to know how to embed images which are included in the html.

例如,如果身体是这样的

So for example if the body is something like

<img src="../path/image.png"></img>

我想将 image.png 嵌入到电子邮件中,src 属性应替换为 content-id.有人知道怎么做吗?

I would like to embed image.png into the email, and the src attribute should be replaced with content-id. Does anybody know how to do this?

推荐答案

适用于 Python 3.4 及以上版本.

接受的答案非常好,但仅适用于较旧的 Python 版本(2.x 和 3.3).我认为它需要更新.

The accepted answer is excellent, but only suitable for older Python versions (2.x and 3.3). I think it needs an update.

以下是在较新的 Python 版本(3.4 及更高版本)中执行此操作的方法:

Here's how you can do it in newer Python versions (3.4 and above):

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("""
<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

这篇关于发送包含嵌入图像的多部分 html 电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆