A reusable Django app for queuing the sending of email
Project description
django-mailer is asynchronous so in addition to putting mail on the queue you need to periodically tell it to clear the queue and actually send the mail.
The latter is done via a command extension.
Putting Mail On The Queue
Because django-mailer currently uses the same function signature as Django’s core mail support you can do the following in your code:
# favour django-mailer but fall back to django.core.mail from django.conf import settings if "mailer" in settings.INSTALLED_APPS: from mailer import send_mail else: from django.core.mail import send_mail
and then just call send_mail like you normally would in Django:
send_mail(subject, message_body, settings.DEFAULT_FROM_EMAIL, recipients)
Additionally you can send all the admins as specified in the ADMIN setting by calling:
mail_admins(subject, message_body)
or all managers as defined in the MANAGERS setting by calling:
mail_managers(subject, message_body)
Clear Queue With Command Extensions
With mailer in your INSTALLED_APPS, there will be two new manage.py commands you can run:
send_mail will clear the current message queue. If there are any failures, they will be marked deferred and will not be attempted again by send_mail.
retry_deferred will move any deferred mail back into the normal queue (so it will be attempted again on the next send_mail).
You may want to set these up via cron to run regularly:
* * * * * (cd $PINAX; /usr/local/bin/python2.5 manage.py send_mail >> $PINAX/cron_mail.log 2>&1) 0,20,40 * * * * (cd $PINAX; /usr/local/bin/python2.5 manage.py retry_deferred >> $PINAX/cron_mail_deferred.log 2>&1)
This attempts to send mail every minute with a retry on failure every 20 minutes.
manage.py send_mail uses a lock file in case clearing the queue takes longer than the interval between calling manage.py send_mail.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-mailer-0.1.0alpha.tar.gz
.
File metadata
- Download URL: django-mailer-0.1.0alpha.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 491bdd76687208f1e2c0254b282dfa3317293710e982813a5c1826456187ae88 |
|
MD5 | 618fc244e793b97c10e3eb4bc351e961 |
|
BLAKE2b-256 | fe6bfeecf93c7fdff08300d5448eb5ad1d87bf4d5eb9f93ec955320899f34513 |