Für Python-Versionen 3.4 und höher.
Die akzeptierte Antwort ist ausgezeichnet, aber nur für ältere Python-Versionen (2.x und 3.3) geeignet. Ich denke, es braucht ein Update.
So können Sie dies in neueren Python-Versionen (3.4 und höher) tun:
from email.message import EmailMessage
from email.utils import make_msgid
import mimetypes
msg = EmailMessage()
msg['Subject'] = 'Hello there'
msg['From'] = 'ABCD <abcd@xyz.com>'
msg['To'] = 'PQRS <pqrs@xyz.com>'
msg.set_content('This is a plain text body.')
image_cid = make_msgid(domain='xyz.com')
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')
with open('path/to/image.jpg', 'rb') as img:
maintype, subtype = mimetypes.guess_type(img.name)[0].split('/')
msg.get_payload()[1].add_related(img.read(),
maintype=maintype,
subtype=subtype,
cid=image_cid)