Metadata-Version: 2.1
Name: django-rebel
Version: 0.1.5
Summary: Mailgun Backend for Django
Home-page: https://gitlab.com/socivy/django-rebel
Author: Socivy Developers
Author-email: info@socivy.com
License: MIT
Keywords: mail mailgun django
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
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
Description-Content-Type: text/markdown
Requires-Dist: django (<2.3,>=2.0)
Requires-Dist: requests (<=3.0,>=2.0)
Requires-Dist: psycopg2 (>=2.7)
Requires-Dist: premailer (==3.2.0)
Provides-Extra: test
Requires-Dist: django (<2.3,>=2.0) ; extra == 'test'
Requires-Dist: requests (<=3.0,>=2.0) ; extra == 'test'
Requires-Dist: psycopg2 (>=2.7) ; extra == 'test'
Requires-Dist: premailer (==3.2.0) ; extra == 'test'

# 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"
            }
        }
    }
}
```


