Metadata-Version: 1.0
Name: django-rq-email-backend
Version: 0.1.1
Summary: Provides Django email integration for RQ (Redis Queue)
Home-page: https://github.com/jefftriplett/django-rq-email-backend
Author: Jeff Triplett
Author-email: jeff.triplett@gmail.com
License: BSD
Description: ========================
        django-rq-email-backend
        ========================
        
        ------------
        Requirements
        ------------
        
        * `Django <https://www.djangoproject.com/>`_
        * `RQ <https://pypi.python.org/pypi/rq>`_
        * `Django-RQ <http://pypi.python.org/pypi/django-rq>`_
        
        ------------
        Installation
        ------------
        
        * Install ``django-rq-email-backend``:
        
        .. code-block:: python
        
            pip install django-rq-email-backend
        
        * Add ``django_rq`` to ``INSTALLED_APPS`` in ``settings.py``:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                # other apps
                'django_rq_email_backend',
            )
        
        You must then set ``django-rq-email-backend`` as your ``EMAIL_BACKEND``::
        
            EMAIL_BACKEND = 'django_rq_email_backend.backends.RQEmailBackend'
        
        By default ``django-rq-email-backend`` will use Django's builtin ``SMTP`` email backend
        for the actual sending of the mail. If you'd like to use another backend, you
        may set it in ``RQ_EMAIL_BACKEND`` just like you would normally have set
        ``EMAIL_BACKEND`` before you were using Celery. In fact, the normal installation
        procedure will most likely be to get your email working using only Django, then
        change ``EMAIL_BACKEND`` to ``RQ_EMAIL_BACKEND``, and then add the new
        ``EMAIL_BACKEND`` setting from above.
        
        -----------
        Inspiration
        -----------
        
        `django-rq-email-backend` was heavilty influenced by::
        
        * `django-celery-email <https://bitbucket.org/pmclanahan/django-celery-email>`_
        * `django-rq-mail <https://github.com/thoas/django-rq-mail>`_
        
        ---------
        Changelog
        ---------
        
        0.1.1
        -----
        * Renamed project to avoid potential confusion with `django-rq-mail`.
        
        
        0.1.0
        -----
        * Initial release
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
