[Answered ]-Mail sent using send_mail() [Python – Django] does not send embedded images

2👍

I resolved this specified the full STATIC_URL, e.g http://localhost:8000/static/
and when deployed, i changed to the domain.
Try to change it to

<img src = "http://localhost:8000/static/app/images/logo1.png" style = "position: absolute; left: 5%; height: 100%; width:50%;" />

I have found this possible other solution but i don’t tried.

Leave a comment