Metadata-Version: 2.1
Name: django-email-service
Version: 0.2
Summary: A Django app to send emails
Home-page: https://www.squadvoice.co/
Author: SquadStack
Author-email: dev@squadrun.co
License: UNKNOWN
Description: ====================
        Django Email Service
        ====================
        
        Django Email Service is a Django app that allows you to send emails using mailjet (for now) in a convenient way.
        
        Quick start
        -----------
        
        1. Add "django_email" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django_email',
            ]
        
        2. Set the following variables in your settings file::
        
            MAILJET_API_KEY = 'mailjet-api-key'
            MAILJET_SECRET_KEY = 'mailjet-secret-key'
            DEFAULT_FROM_EMAIL = 'default-from-email'
            DEFAULT_FROM_NAME = 'default-from-name'
        
        3. Include the polls URLconf in your project urls.py like this::
        
            path('email/', include('django_email.urls')),
        
        4. Run ``python manage.py migrate`` to create the django_email models.
        
        5. Start the development server and visit http://127.0.0.1:8000/admin/
           to view email log (you'll need the Admin app enabled).
        
        6. Visit http://127.0.0.1:8000/django_email/ to see the email logs along with its events.
        
        Notes
        ------
        
        1. By default the celery messages go into the default celery queue which is named as ``celery``. You can change this
           be routing messages from default queue to some other queue.
           https://stackoverflow.com/questions/10707287/django-celery-routing-problems
        
        2. You need to configure a message broker in your application like RabbitMQ or Redis where messages are stored and
           consumed by celery workers.
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/x-rst
