123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- Metadata-Version: 2.0
- Name: django-templated-mail
- Version: 1.1.1
- Summary: Send emails using Django template system.
- Home-page: https://github.com/sunscrapers/django-templated-mail
- Author: Sunscrapers
- Author-email: info@sunscrapers.com
- License: MIT
- Description-Content-Type: UNKNOWN
- Platform: UNKNOWN
- Classifier: Development Status :: 5 - Production/Stable
- Classifier: Framework :: Django :: 1.8
- Classifier: Framework :: Django :: 1.11
- Classifier: Framework :: Django :: 2.0
- Classifier: Intended Audience :: Developers
- Classifier: License :: OSI Approved :: MIT License
- Classifier: Operating System :: OS Independent
- Classifier: Programming Language :: Python
- Classifier: Programming Language :: Python :: 2.7
- Classifier: Programming Language :: Python :: 3.4
- Classifier: Programming Language :: Python :: 3.5
- Classifier: Programming Language :: Python :: 3.6
- =====================
- django-templated-mail
- =====================
- .. image:: https://img.shields.io/pypi/v/django-templated-mail.svg
- :target: https://pypi.org/project/django-templated-mail
- .. image:: https://img.shields.io/travis/sunscrapers/django-templated-mail.svg
- :target: https://travis-ci.org/sunscrapers/django-templated-mail
- .. image:: https://img.shields.io/codecov/c/github/sunscrapers/django-templated-mail.svg
- :target: https://codecov.io/gh/sunscrapers/django-templated-mail
- .. image:: https://img.shields.io/scrutinizer/g/sunscrapers/django-templated-mail.svg
- :target: https://scrutinizer-ci.com/g/sunscrapers/django-templated-mail
- A simple wrapper for ``django.core.mail.EmailMultiAlternatives`` which makes
- use of Django template system to store email content in separate file.
- Developed by `SUNSCRAPERS <http://sunscrapers.com/>`_ with passion & patience.
- Installation
- ============
- Simply install using ``pip``:
- .. code-block:: bash
- $ pip install -U django-templated-mail
- Documentation
- =============
- Documentation is available to study at
- `http://django-templated-mail.readthedocs.io <http://django-templated-mail.readthedocs.io>`_
- and in ``docs`` directory.
- Contributing and development
- ============================
- To start developing on **django-templated-mail**, clone the repository:
- .. code-block:: bash
- $ git clone git@github.com:sunscrapers/django-templated-mail.git
- If you are a **pipenv** user you can quickly setup testing environment by
- using Make commands:
- .. code-block:: bash
- $ make init
- $ make test
|