Metadata-Version: 2.1
Name: django-rebel
Version: 0.2.0
Summary: Mailgun Backend for Django
Home-page: https://gitlab.com/socivy/django-rebel
Author: Socivy Developers
Author-email: info@socivy.com
License: MIT
Description: # Django Rebel
        
        ## Requirements
        - Django >= 2.0
        - Postgresql
        
        ## Installation
        ```
        pip install django-rebel
        ```
        
        Add `django_rebel` to your INSTALLED_APPS setting.
        ```
        INSTALLED_APPS = (
            ...
            'django_rebel',
        )
        ```
        
        Add Django Rebel settings to your settings file.
        ```
        REBEL = {
            "TEST_MODE": False,
            "SEARCH_FIELDS": [],
            "EMAIL_PROFILES": {
                'MARKETING': {
                    'EMAIL': "anyone@example.com",
                    'FULL_NAME': 'Anyone',
                    "API": {
                        "API_KEY": "MAILGUN_API_KEY",
                        "DOMAIN": "mg.example.com"
                    }
                }
            }
        }
        ```
        
Keywords: mail mailgun django
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Provides-Extra: test
