├── .bumpversion.cfg ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pytest.ini ├── requirements.txt ├── setup.py ├── templated_email ├── __init__.py ├── backends │ ├── __init__.py │ └── vanilla_django.py ├── generic_views.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── sendtesttemplatedemail.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── templated_email │ │ ├── saved_email.html │ │ └── test_email.email ├── urls.py ├── utils.py └── views.py ├── tests ├── __init__.py ├── backends │ ├── __init__.py │ ├── test_vanilla_django_backend.py │ └── utils.py ├── generic_views │ ├── __init__.py │ ├── models.py │ ├── test_views.py │ └── views.py ├── settings.py ├── template_fixtures │ └── templated_email │ │ ├── html_template.email │ │ ├── inexistent_base.email │ │ ├── inheritance_template.email │ │ ├── inline_image.email │ │ ├── legacy.html │ │ ├── legacy.txt │ │ ├── mixed_template.email │ │ ├── multi-template.email │ │ ├── plain_template.email │ │ ├── plain_template_without_subject.email │ │ └── welcome.email ├── test_get_connection.py ├── test_get_templated_mail.py ├── test_inline_image.py ├── test_management_commands.py ├── test_send_templated_mail.py ├── test_urls.py ├── test_utils.py ├── test_views.py └── utils.py ├── tox-requirements.txt └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/README.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r tox-requirements.txt 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/setup.py -------------------------------------------------------------------------------- /templated_email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/__init__.py -------------------------------------------------------------------------------- /templated_email/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/backends/__init__.py -------------------------------------------------------------------------------- /templated_email/backends/vanilla_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/backends/vanilla_django.py -------------------------------------------------------------------------------- /templated_email/generic_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/generic_views.py -------------------------------------------------------------------------------- /templated_email/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templated_email/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templated_email/management/commands/sendtesttemplatedemail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/management/commands/sendtesttemplatedemail.py -------------------------------------------------------------------------------- /templated_email/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/migrations/0001_initial.py -------------------------------------------------------------------------------- /templated_email/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templated_email/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/models.py -------------------------------------------------------------------------------- /templated_email/templates/templated_email/saved_email.html: -------------------------------------------------------------------------------- 1 | {{ object.content|safe }} 2 | -------------------------------------------------------------------------------- /templated_email/templates/templated_email/test_email.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/templates/templated_email/test_email.email -------------------------------------------------------------------------------- /templated_email/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/urls.py -------------------------------------------------------------------------------- /templated_email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/utils.py -------------------------------------------------------------------------------- /templated_email/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/templated_email/views.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/test_vanilla_django_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/backends/test_vanilla_django_backend.py -------------------------------------------------------------------------------- /tests/backends/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/backends/utils.py -------------------------------------------------------------------------------- /tests/generic_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_views/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/generic_views/models.py -------------------------------------------------------------------------------- /tests/generic_views/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/generic_views/test_views.py -------------------------------------------------------------------------------- /tests/generic_views/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/generic_views/views.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/html_template.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/html_template.email -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/inexistent_base.email: -------------------------------------------------------------------------------- 1 | {% extends 'foo' %} 2 | -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/inheritance_template.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/inheritance_template.email -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/inline_image.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/inline_image.email -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/legacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/legacy.html -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/legacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/legacy.txt -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/mixed_template.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/mixed_template.email -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/multi-template.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/multi-template.email -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/plain_template.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/plain_template.email -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/plain_template_without_subject.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/plain_template_without_subject.email -------------------------------------------------------------------------------- /tests/template_fixtures/templated_email/welcome.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/template_fixtures/templated_email/welcome.email -------------------------------------------------------------------------------- /tests/test_get_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_get_connection.py -------------------------------------------------------------------------------- /tests/test_get_templated_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_get_templated_mail.py -------------------------------------------------------------------------------- /tests/test_inline_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_inline_image.py -------------------------------------------------------------------------------- /tests/test_management_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_management_commands.py -------------------------------------------------------------------------------- /tests/test_send_templated_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_send_templated_mail.py -------------------------------------------------------------------------------- /tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_urls.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tox-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-templated-email/HEAD/tox.ini --------------------------------------------------------------------------------