Metadata-Version: 2.1
Name: django-mail-queue
Version: 3.2.5
Summary: Simple Mail Queuing for Django
Home-page: http://github.com/Privex/django-mail-queue
Author: Privex Inc. (2019+) / Derek Stegelman (2011-2018)
Author-email: chris@privex.io
License: MIT
Description: [![Build Status](https://travis-ci.org/Privex/django-mail-queue.png?branch=master)](https://travis-ci.org/Privex/django-mail-queue)
        [![PyPi Version](https://img.shields.io/pypi/v/django-mail-queue.svg)](https://pypi.org/project/django-mail-queue/)
        ![License Button](https://img.shields.io/pypi/l/django-mail-queue) ![PyPI - Downloads](https://img.shields.io/pypi/dm/django-mail-queue)
        ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-mail-queue) 
        ![GitHub last commit](https://img.shields.io/github/last-commit/Privex/django-mail-queue)
        
        Django Mail Queue
        =================
        
        This is a fork of http://github.com/dstegelman/django-mail-queue maintained by [Privex Inc.](https://www.privex.io/)
        
        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](https://www.privex.io/) - 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](https://travis-ci.org/Privex/django-mail-queue), which runs the unit
        tests on a variety of Python and Django versions.
        
        ### Download and install from PyPi using pip (recommended)
        
        ```sh
        pip3 install django-mail-queue
        ```
        
        ### (Alternative) Manual install from Git
        
        **Option 1 - Use pip to install straight from Github**
        
        ```sh
        pip3 install git+https://github.com/Privex/django-mail-queue
        ```
        
        **Option 2 - Clone and install manually**
        
        ```bash
        # 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:
        
        ```python
        INSTALLED_APPS = (
            'mailqueue',
        )
        ```
        
        Add the below settings, and adjust as needed:
        
        ```python
        
        # 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:
        
        
        ```bash
        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.
        
        ```python
        
        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:
        
        ```bash
        # 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](https://cdn.privex.io/github/privex-mail-queue/pmq-message-list.png)
        
        ![Screenshot of Email Actions](https://cdn.privex.io/github/privex-mail-queue/pmq-message-actions.png)
        
        
        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
        ```
        
Keywords: django-mail-queue
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
