- Fixed crasher with models
__str__
- Django 1.10 support.
- Fixed reprs for Message and MessageLog.
- More helpful admin for Message and MessageLog
- Handle exceptions from really old Django versions
Save the
Message-ID
header onMessage
explicitly to enable finding emails using this identifier.This includes a database schema migration.
- Deprecated calling
send_mail
andsend_html_mail
usingpriority
kwargs"high"
,"medium"
, and"low"
. Instead you should usePRIORITY_HIGH
,PRIORITY_MEDIUM
andPRIORITY_LOW
frommailer.models
. - Fixed bug with migrations for Django 1.7, which wanted to create a migration to 'fix' the EmailField length back down to 75 instead of 254.
Included migrations - for both South and Django 1.7 native migrations.
Note:
- If you use South, you will need at least South 1.0
- You will need to use '--fake' or '--fake-initial' on existing installations.
These migrations were supposed to be in 1.0.0 but were omitted due to a packaging error.
- Throttling of email sending
- Django 1.8 support
- Admin tweaks and improvements
- Various other fixes, especially from Renato Alves <alves.rjc@gmail.com> - thank you!
- First PyPI version