pmclanahan / django-celery-email

A Django email backend that uses a celery task for sending the email.
BSD 3-Clause "New" or "Revised" License
477 stars 108 forks source link

I found and fixed a small bug that impacted emails that contain embedded images #27

Closed georgmzimmer closed 8 years ago

georgmzimmer commented 8 years ago

https://www.vlent.nl/weblog/2014/01/15/sending-emails-with-embedded-images-in-django/ http://stackoverflow.com/questions/1598164/emailmultialternatives-adding-a-3d-when-sending-mail-with-image-in-django

msg.mixed_subtype must be saved if you are embedding images directly into the email. I added it to utils.py in my fork and it works well for me now.

pmclanahan commented 8 years ago

Looks good. Thanks for the patch!