Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pinax/django-mailer

mail queuing and management for the Django web framework
https://github.com/pinax/django-mailer

Last synced: about 2 months ago
JSON representation

mail queuing and management for the Django web framework

Awesome Lists containing this project

README

        

Django Mailer
-------------

.. image:: https://github.com/pinax/django-mailer/actions/workflows/build.yml/badge.svg
:target: https://github.com/pinax/django-mailer/actions/workflows/build.yml

.. image:: https://img.shields.io/coveralls/pinax/django-mailer.svg
:target: https://coveralls.io/r/pinax/django-mailer

.. image:: https://img.shields.io/pypi/dm/django-mailer.svg
:target: https://pypi.python.org/pypi/django-mailer/

.. image:: https://img.shields.io/pypi/v/django-mailer.svg
:target: https://pypi.python.org/pypi/django-mailer/

.. image:: https://img.shields.io/badge/license-MIT-blue.svg
:target: https://pypi.python.org/pypi/django-mailer/

django-mailer
-------------

``django-mailer`` is a reusable Django app for queuing the sending of email. It
works by storing email in the database for later sending. This has a number of
advantages:

- **robustness** - if your email provider goes down or has a temporary error,
the email won’t be lost. In addition, since the ``send_mail()`` call always
succeeds (unless your database is out of action), then the HTTP request that
triggered the email to be sent won’t crash, and any ongoing transaction won’t
be rolled back.

- **correctness** - when an outgoing email is created as part of a transaction,
since it is stored in the database it will participate in transactions. This
means it won’t be sent until the transaction is committed, and won’t be sent
at all if the transaction is rolled back.

In addition, if you want to ensure that mails are sent very quickly, and without
heaving polling, django-mailer comes with a PostgreSQL specific ``runmailer_pg``
command. This uses PostgreSQL’s `NOTIFY
`_/`LISTEN
`_ feature to be able to
send emails as soon as they are added to the queue.

Limitations
-----------

File attachments are also temporarily stored in the database, which means if you
are sending files larger than several hundred KB in size, you are likely to run
into database limitations on how large your query can be. If this happens,
you'll either need to fall back to using Django's default mail backend, or
increase your database limits (a procedure that depends on which database you
are using).

With django-mailer, you can’t know in a Django view function whether the email
has actually been sent or not - the ``send_mail`` function just stores mail on
the queue to be sent later.

django-mailer was developed as part of the `Pinax ecosystem
`_ but is just a Django app and can be used
independently of other Pinax apps.

Requirements
------------

* Django >= 2.2

* Databases: django-mailer supports all databases that Django supports, with the following notes:

* SQLite: you may experience 'database is locked' errors if the ``send_mail``
command runs when anything else is attempting to put items on the queue. For this reason
SQLite is not recommended for use with django-mailer.

* MySQL: the developers don’t test against MySQL.

Usage
-----

See `usage.rst
`_ in
the docs.

Support
-------

The Pinax documentation is available at http://pinaxproject.com/pinax/.

This is an Open Source project maintained by volunteers, and outside this
documentation the maintainers do not offer other support. For cases where you
have found a bug you can file a GitHub issue. In case of any questions we
recommend you join the `Pinax Slack team `_ and
ping the Pinax team there instead of creating an issue on GitHub. You may also
be able to get help on other programming sites like `Stack Overflow
`_.

Contribute
----------

See `CONTRIBUTING.rst `_ for information about contributing patches to ``django-mailer``.

See this `blog post including a video `_, or our `How to Contribute `_ section for an overview on how contributing to Pinax works. For concrete contribution ideas, please see our `Ways to Contribute/What We Need Help With `_ section.

We also highly recommend reading our `Open Source and Self-Care blog post `_.

Code of Conduct
---------------

In order to foster a kind, inclusive, and harassment-free community, the Pinax Project has a `code of conduct `_.
We ask you to treat everyone as a smart human programmer that shares an interest in Python, Django, and Pinax with you.

Pinax Project Blog and Twitter
------------------------------

For updates and news regarding the Pinax Project, please follow us on Twitter at @pinaxproject and check out `our blog `_.