├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _ext │ ├── __init__.py │ └── djangodocs.py ├── advanced_usage.rst ├── api.rst ├── changelog.rst ├── conf.py ├── contributors.rst ├── getting_started.rst ├── index.rst ├── requirements.txt └── troubleshuting.rst ├── mail_templated ├── __init__.py ├── conf.py ├── default_settings.py ├── message.py ├── models.py ├── templates │ ├── mail_templated │ │ └── base.tpl │ └── mail_templated_test │ │ ├── alternate_tags.tpl │ │ ├── base.tpl │ │ ├── empty.tpl │ │ ├── extended.tpl │ │ ├── multilang.tpl │ │ ├── multipart.html │ │ ├── overridden.tpl │ │ ├── overridden2.tpl │ │ ├── plain.html │ │ ├── plain.tpl │ │ └── whitespaces.tpl ├── test_utils │ ├── __init__.py │ ├── attachment.png │ ├── django_setup.py │ ├── run.py │ ├── settings.py │ └── settings_extra.py ├── tests.py └── utils.py ├── release.sh ├── runtests.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | dist 4 | docs/_build 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_ext/djangodocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/_ext/djangodocs.py -------------------------------------------------------------------------------- /docs/advanced_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/advanced_usage.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/contributors.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.9.1 2 | sphinxcontrib-napoleon==0.4.4 -------------------------------------------------------------------------------- /docs/troubleshuting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/docs/troubleshuting.rst -------------------------------------------------------------------------------- /mail_templated/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/__init__.py -------------------------------------------------------------------------------- /mail_templated/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/conf.py -------------------------------------------------------------------------------- /mail_templated/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/default_settings.py -------------------------------------------------------------------------------- /mail_templated/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/message.py -------------------------------------------------------------------------------- /mail_templated/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated/base.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/alternate_tags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/alternate_tags.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/base.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/empty.tpl: -------------------------------------------------------------------------------- 1 | {% extends "mail_templated/base.tpl" %} 2 | -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/extended.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/extended.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/multilang.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/multilang.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/multipart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/multipart.html -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/overridden.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/overridden.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/overridden2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/overridden2.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/plain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/plain.html -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/plain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/plain.tpl -------------------------------------------------------------------------------- /mail_templated/templates/mail_templated_test/whitespaces.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/templates/mail_templated_test/whitespaces.tpl -------------------------------------------------------------------------------- /mail_templated/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mail_templated/test_utils/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/test_utils/attachment.png -------------------------------------------------------------------------------- /mail_templated/test_utils/django_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/test_utils/django_setup.py -------------------------------------------------------------------------------- /mail_templated/test_utils/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/test_utils/run.py -------------------------------------------------------------------------------- /mail_templated/test_utils/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/test_utils/settings.py -------------------------------------------------------------------------------- /mail_templated/test_utils/settings_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/test_utils/settings_extra.py -------------------------------------------------------------------------------- /mail_templated/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/tests.py -------------------------------------------------------------------------------- /mail_templated/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/mail_templated/utils.py -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/release.sh -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/runtests.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemrizhov/django-mail-templated/HEAD/setup.py --------------------------------------------------------------------------------