Metadata-Version: 1.1
Name: django-mailjet
Version: 0.3.1
Summary: A Django email backend for Mailjet
Home-page: http://github.com/kidig/django-mailjet/
Author: Dmitrii Gerasimenko
Author-email: kiddima@gmail.com
License: MIT
Description: ==============
        Django-Mailjet
        ==============
        Un-official Django email backend for use with Mailjet - https://www.mailjet.com/
        
        Overview
        ========
        Django-Mailjet is a drop-in mail backend for Django.
        
        Getting going
        =============
        Install django-mailjet:
            ``pip install django-mailjet``
        Add the following to your ``settings.py``::
        
            EMAIL_BACKEND = 'django_mailjet.backends.MailjetBackend'
            MAILJET_API_KEY = 'API-KEY'
            MAILJET_API_SECRET = 'API-SECRET'
        
        Replace ``API-KEY`` and ``API-SECRET`` with the values from your Mailjet account details.
        
        Now, when you use ``django.core.mail.send_mail``, Mailjet will send the messages.
        
        .. _Mailjet: http://mailjet.com
        
        *NOTE*: Django-Mailjet does **NOT**
        validate your data for compliance with Mailjet's API.
        You must ensure what you send is appropriate.
        
        
        Django Email Backend Reference
        ================================
        * https://docs.djangoproject.com/en/dev/topics/email/#email-backends
        
Keywords: django,mailjet,email,email backend
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
