Nice programing

포함 된 이미지가 포함 된 Multipart HTML 이메일 보내기

nicepro 2020. 11. 26. 19:49
반응형

포함 된 이미지가 포함 된 Multipart HTML 이메일 보내기


저는 파이썬에서 이메일 모듈을 가지고 놀았지만 html에 포함 된 이미지를 포함하는 방법을 알고 싶습니다.

예를 들어 몸이

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

image.png 를 이메일 에 포함하고 싶은데src 속성은 content-id. 아무도 이것을하는 방법을 알고 있습니까?


다음은 내가 찾은 예입니다.

레시피 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

참고 URL : https://stackoverflow.com/questions/920910/sending-multipart-html-emails-which-contain-embedded-images

반응형