Metadata-Version: 2.1
Name: podiant-template-mail
Version: 1.3.0
Summary: A helper library for asynchronously sending HTML emails written in Markdown
Home-page: https://git.steadman.io/podiant/template-mail
Author: Mark Steadman
Author-email: mark@podiant.co
License: MIT
Description: Podiant template mail
        =====================
        
        ![Build](https://git.steadman.io/podiant/template-mail/badges/master/build.svg)
        ![Coverage](https://git.steadman.io/podiant/template-mail/badges/master/coverage.svg)
        
        A helper library for asynchronously sending HTML emails written in Markdown
        
        ## Quickstart
        
        Install Template Mail:
        
        ```sh
        pip install podiant-template-mail
        ```
        
        Add it to your `INSTALLED_APPS`:
        ```python
        INSTALLED_APPS = (
            ...
            'template_mail',
            ...
        )
        ```
        
        Add Template Mail's URL patterns:
        
        ```python
        from template_mail import urls as template_mail_urls
        
        urlpatterns = [
            ...
            url(r'^', include(template_mail_urls)),
            ...
        ]
        ```
        
        
        ## Running tests
        
        Does the code actually work?
        
        ```
        coverage run --source template_mail runtests.py
        ```
        
        ## Credits
        
        Tools used in rendering this package:
        
        - [Cookiecutter](https://github.com/audreyr/cookiecutter)
        - [`cookiecutter-djangopackage`](https://github.com/pydanny/cookiecutter-djangopackage)
        
Keywords: podiant-template-mail
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
