- Djmail doesn't support Python 2.x anymore. (thanks @mhindery)
- Djmail is compatible only with Django >= 2.0. (thanks @mhindery)
- Fix minor error with async backend.
- Now djmail is compatible with Django 1.11, Django 2 and Python 3.6.
- Remove compatibility with python 3.3.
- Show email html body in the admin panel (PR #45 thanks to @jdruiter).
- Fix some minor PEP8 errors.
- Add template names to exception about empty body, to be able to simply update them.
- Remove duplication of code in _render_message_body_as_html and _render_message_body_as_text.
- Now Djmail is compatible only with Django >= 1.8.
- Use celery >= 4.x and remove djcelery dependency.
- Add management command 'djmail_delete_old_messages'.
- Fix Issue #36 'Celery backend fails when CELERY_TASK_SERIALIZER not defined'.
- Minor style improvements and code reorganization.
Note: Special thanks to @mathieuhinderyckx for makeing tjis release posible.
- Fix management command 'djmail_retry_send_messages', now is compatibile with django 1.10.
- Add compatibility with django 1.10. Thanks to @ad-m.
- Pass extra kwargs to EmailMultiAlternatives in MagicMailBuilder. Thanks to @ad-m.
- Premailer: Fix call when html is None and create a mixin to be more reusable. Thanks to @davidfischer-ch.
- Declare any non-HTML body as text/plain (e.g. JSON). Thanks to @davidfischer-ch.
- Fix issue #22: Celery backend: Handle other serializers than pickle (JSON, yaml...) Thanks to @davidfischer-ch.
- Translate email subject.
- Now the project will be maintened by David Barragan (@bameda).
- Drop compatibility with django 1.4
- Refactored email rendering making it more efficient using translation switching.
- Better handling different type of emails (html-only, text-only and both).
- code cleaning (pep8) (by @davidfischer-ch)
- fix wrong parameters on management command (by @mathieuhinderyckx)
- Fixed errors' handling in python2.
- Add missing modules not included in the previous version.
- Django 1.4.x support added.
- Minor code cleaning.
- Better control for empty bodies.
- New documentation.
- Runtests improvements.