Отправка составных электронных писем в формате html, содержащих встроенные изображения

Я играл с модулем электронной почты в Python, но я хочу знать, как вставлять изображения, которые включены в HTML.

Так, например, если тело что-то вроде

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

Я хотел бы встраивать image.png в электронную почту, и src атрибут должен быть заменен на content-id, Кто-нибудь знает, как это сделать?

5 ответов

Решение

Вот пример, который я нашел.

Рецепт 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()

Для версий 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("""\
<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

Я понял, насколько болезненны некоторые вещи с 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, Подушка 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 install redmail

Это (надеюсь) все, что вам нужно для отправки электронной почты (есть намного больше), и оно хорошо протестировано. Также я написал обширную документацию: https://red-mail.readthedocs.io/en/latest/ , а исходный код находится библиотекуздесь .

На самом деле здесь есть действительно хороший пост с несколькими решениями этой проблемы . Благодаря этому я смог отправить электронное письмо с HTML, вложением Excel и встроенными изображениями.

Код рабочий

    att = MIMEImage(imgData)
    att.add_header('Content-ID', f'<image{i}.{imgType}>')
    att.add_header('X-Attachment-Id', f'image{i}.{imgType}')
    att['Content-Disposition'] = f'inline; filename=image{i}.{imgType}'
    msg.attach(att)
Другие вопросы по тегам