Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sunscrapers/django-templated-mail
Send emails using Django template system.
https://github.com/sunscrapers/django-templated-mail
django email email-template
Last synced: 4 days ago
JSON representation
Send emails using Django template system.
- Host: GitHub
- URL: https://github.com/sunscrapers/django-templated-mail
- Owner: sunscrapers
- License: mit
- Created: 2017-09-15T12:13:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-19T14:40:52.000Z (over 3 years ago)
- Last Synced: 2024-12-28T13:17:00.989Z (11 days ago)
- Topics: django, email, email-template
- Language: Python
- Homepage:
- Size: 132 KB
- Stars: 96
- Watchers: 7
- Forks: 22
- Open Issues: 15
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE
Awesome Lists containing this project
README
=====================
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-mailA simple wrapper for ``django.core.mail.EmailMultiAlternatives`` which makes
use of Django template system to store email content in separate file.Developed by `SUNSCRAPERS `_ 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 `_
and in ``docs`` directory.Contributing and development
============================To start developing on **django-templated-mail**, clone the repository:
.. code-block:: bash
$ git clone [email protected]: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