Metadata-Version: 1.1
Name: django-sendgrid-v5
Version: 0.9.0
Summary: An implementation of Django's EmailBackend compatible with sendgrid-python v5+
Home-page: https://github.com/sklarsa/django-sendgrid-v5
Author: Steven Sklar
Author-email: sklarsa@gmail.com
License: MIT
Description: # django-sendgrid-v5
        [![Latest Release](https://img.shields.io/pypi/v/django-sendgrid-v5.svg)](https://pypi.python.org/pypi/django-sendgrid-v5/) [![Travis Build Status](https://travis-ci.org/sklarsa/django-sendgrid-v5.svg)](https://travis-ci.org/sklarsa/django-sendgrid-v5) 
        [![codecov](https://codecov.io/gh/sklarsa/django-sendgrid-v5/branch/master/graph/badge.svg)](https://codecov.io/gh/sklarsa/django-sendgrid-v5)
        
        This package implements an email backend for Django that relies on sendgrid's REST API for message delivery.
        
        It is under active development, and pull requests are more than welcome\!
        
        To use the backend, simply install the package (using pip), set the `EMAIL_BACKEND` setting in Django, and add a `SENDGRID_API_KEY` key (set to the appropriate value) to your Django settings.
        
        ## How to Install                                                                                                            
        
        1.  `pip install django-sendgrid-v5`
        2.  In your project's settings.py script:
            1.  Set `EMAIL_BACKEND = "sendgrid_backend.SendgridBackend"`
            2.  Set the SENDGRID\_API\_KEY in settings.py to your api key that was provided to you by sendgrid. `SENDGRID_API_KEY = os.environ["SENDGRID_API_KEY"]`
        
        ### Other settings
        
        1.  To toggle sandbox mode (when django is running in DEBUG mode), set `SENDGRID_SANDBOX_MODE_IN_DEBUG = True/False`.
            1.  To err on the side of caution, this defaults to True, so emails sent in DEBUG mode will not be delivered, unless this setting is explicitly set to False.
        2.  `SENDGRID_ECHO_TO_STDOUT` will echo to stdout or any other file-like
            object that is passed to the backend via the `stream` kwarg.
        3.  `SENDGRID_TRACK_EMAIL_OPENS` - defaults to true and tracks email open events via the Sendgrid service. These events are logged in the Statistics UI, Email Activity interface, and are reported by the Event Webhook.
        4.  `SENDGRID_TRACK_CLICKS_HTML` - defaults to true and, if enabled in your Sendgrid account, will tracks click events on links found in the HTML message sent.
        5.  `SENDGRID_TRACK_CLICKS_PLAIN` - defaults to true and, if enabled in your Sendgrid account, will tracks click events on links found in the plain text message sent.
        
        
        ## Examples
        - Marcelo Canina [(@marcanuy)](https://github.com/marcanuy) wrote a great article demonstrating how to integrate `django-sendgrid-v5` into your Django application on his site: [https://simpleit.rocks/python/django/adding-email-to-django-the-easiest-way/](https://simpleit.rocks/python/django/adding-email-to-django-the-easiest-way/)
        
Keywords: django email sendgrid backend
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
