I have develop a function in PYTHON that sends emails with one .doc attachment and one image attachment (.jpg)
The message of the email is HTML.
I want to know h
In your html, use img tags with a src of:
cid:<filename used in your Content-Disposition header>
So, for instance:
<p> <img src="cid:image1.jpeg"/> </p>