Skip to main content

Simple Mail Queuing for Django

Project description

Build Status PyPi Version License Button PyPI - Downloads PyPI - Python Version GitHub last commit

Django Mail Queue

This is a fork of http://github.com/dstegelman/django-mail-queue maintained by Privex Inc.

Derek passed on ownership of the original django-mail-queue PyPi package to Privex on 17 Sep 2019

Privex publishes the fork under the original PyPi package django-mail-queue (since v3.2.0).

This fork is considered to be actively maintained by Privex for both bug fixes and feature additions since December 2018.

If our fork has helped you, consider grabbing a VPS or Dedicated Server from Privex - prices start at as little as US$0.99/mo (yes that's 99 cents a month, and we take cryptocurrency!)

Mail Queue provides an easy and simple way to send email. Each email is saved and queued up either in real time or with Celery. As always, feedback, bugs, and suggestions are welcome.

Install

django-mail-queue maintains high compatibility, from as old as Django 1.8 on Python 2.7, up to Django 2.2 on Python 3.7

To check the compatibility, see Travis CI, which runs the unit tests on a variety of Python and Django versions.

Download and install from PyPi using pip (recommended)

pip3 install django-mail-queue

(Alternative) Manual install from Git

Option 1 - Use pip to install straight from Github

pip3 install git+https://github.com/Privex/django-mail-queue

Option 2 - Clone and install manually

# Clone the repository from Github
git clone https://github.com/Privex/django-mail-queue
cd django-mail-queue

# RECOMMENDED MANUAL INSTALL METHOD
# Use pip to install the source code
pip3 install .

# ALTERNATIVE MANUAL INSTALL METHOD
# If you don't have pip, or have issues with installing using it, then you can use setuptools instead.
python3 setup.py install

Quickstart

Basic configuration

First install the package into your project (see above).

Open settings.py and add mailqueue to your INSTALLED_APPS:

INSTALLED_APPS = (
    'mailqueue',
)

Add the below settings, and adjust as needed:

# If you're using Celery, set this to True
MAILQUEUE_CELERY = False

# Enable the mail queue. If this is set to False, the mail queue will be disabled and emails will be 
# sent immediately instead.
MAILQUEUE_QUEUE_UP = True

# Maximum amount of emails to send during each queue run
MAILQUEUE_LIMIT = 50

# If MAILQUEUE_STORAGE is set to True, will ignore your default storage settings
# and use Django's filesystem storage instead (stores them in MAILQUEUE_ATTACHMENT_DIR) 
MAILQUEUE_STORAGE = False
MAILQUEUE_ATTACHMENT_DIR = 'mailqueue-attachments'

Running the migrations

Once you've added mailqueue to your INSTALLED_APPS plus the basic config in settings.py, run the migrations to create the tables needed:

python manage.py migrate

Basic usage of the queue programmatically

Simply save an email to the database using MailerMessage, and the queue will pick it up on it's next run.

from mailqueue.models import MailerMessage

my_email = "dave@example.com"
my_name = "Dave Johnston"
content = """
Dear John,

This is an example email from Dave.

Thanks,
Dave Johnston!
"""

msg = MailerMessage()
msg.subject = "Hello World"
msg.to_address = "john@example.com"

# For sender names to be displayed correctly on mail clients, simply put your name first
# and the actual email in angle brackets 
# The below example results in "Dave Johnston <dave@example.com>"
msg.from_address = '{} <{}>'.format(my_name, my_email)

# As this is only an example, we place the text content in both the plaintext version (content) 
# and HTML version (html_content).
msg.content = content
msg.html_content = content
msg.save()

Triggering the queue runner

To send emails in the queue (without Celery), use the management command:

# Send up to MAILQUEUE_LIMIT emails now
python manage.py send_queued_messages

# You can use --limit / -l to override the settings.py limit for a specific run
python manage.py send_queued_messages --limit 10
python manage.py send_queued_messages -l 10

If not using Celery, simply add a cron to your system to run manage.py send_queued_messages every minute (or however often you want).

Documentation

http://readthedocs.org/docs/django-mail-queue/en/latest/

Mail Queue provides an admin interface to view all attempted emails and actions for resending failed messages.

Screenshot of Email List

Screenshot of Email Actions

Support/Help/Spam/Hate Mail

If you have questions/problems/suggestions the quickest way to reach me to is simply add a GitHub issue to this project.

Running the Tests Locally

pip install django
pip install -r requirements.txt

py.test mailqueue

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

syscon-django-mail-queue-3.3.1.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

syscon_django_mail_queue-3.3.1-py2.py3-none-any.whl (19.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file syscon-django-mail-queue-3.3.1.tar.gz.

File metadata

  • Download URL: syscon-django-mail-queue-3.3.1.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.26.0 setuptools/63.4.3 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.13

File hashes

Hashes for syscon-django-mail-queue-3.3.1.tar.gz
Algorithm Hash digest
SHA256 2ee7a677a0b6ffffc5e9f510ccb4cdc971dfd8ec10efabdafccbe7d2529af5e4
MD5 f5003cc27bc87168973c903b97ca046b
BLAKE2b-256 d6c8336f54116742f7b00e6fcde09d435e9ec48452f1ec6d1f0d208351b21a8c

See more details on using hashes here.

File details

Details for the file syscon_django_mail_queue-3.3.1-py2.py3-none-any.whl.

File metadata

  • Download URL: syscon_django_mail_queue-3.3.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.26.0 setuptools/63.4.3 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.13

File hashes

Hashes for syscon_django_mail_queue-3.3.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9e072bd58e187e3027cba402d46583730e26ecc6e4b9591c6a34a6bbcf723dc1
MD5 f75f063a929633ed3df295ce5f5ab06e
BLAKE2b-256 dbc95c43dd8a0e326bc62034fe926f04ba7dd85466356f9665b49acd7c55e240

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page