Last updated:
0 purchases
podianttemplatemail 1.3.0
Podiant template mail
A helper library for asynchronously sending HTML emails written in Markdown
Quickstart
Install Template Mail:
pip install podiant-template-mail
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'template_mail',
...
)
Add Template Mail's URL patterns:
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
cookiecutter-djangopackage
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.