{ "info": { "author": "Bradley Whittington", "author_email": "radbrad182@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==============================\nDjango-Templated-Email\n==============================\n\n|GitterBadge|_ |PypiversionBadge|_ |PythonVersionsBadge|_ |LicenseBadge|_\n\n:Info: A Django oriented templated email sending class\n:Author: Bradley Whittington (http://github.com/bradwhittington, http://twitter.com/darb)\n:Tests: |TravisBadge|_ |CoverageBadge|_\n\n\nOverview\n=================\ndjango-templated-email is oriented towards sending templated emails.\nThe library supports template inheritance, adding cc'd and bcc'd recipients,\nconfigurable template naming and location.\n\nThe send_templated_email method can be thought of as the render_to_response\nshortcut for email.\n\nMake sure you are reading the correct documentation:\n\ndevelop branch: https://github.com/vintasoftware/django-templated-email/blob/develop/README.rst\n\nstable pypi/master: https://github.com/vintasoftware/django-templated-email/blob/master/README.rst\n\nGetting going - installation\n==============================\n\nInstalling::\n\n pip install django-templated-email\n\nYou can add the following to your settings.py (but it works out the box):\n\n.. code-block:: python\n\n TEMPLATED_EMAIL_BACKEND = 'templated_email.backends.vanilla_django.TemplateBackend'\n\n # You can use a shortcut version\n TEMPLATED_EMAIL_BACKEND = 'templated_email.backends.vanilla_django'\n\n # You can also use a class directly\n from templated_email.backends.vanilla_django import TemplateBackend\n TEMPLATED_EMAIL_BACKEND = TemplateBackend\n\n\nSending templated emails\n==============================\n\nExample usage using vanilla_django TemplateBackend backend\n\nPython to send mail:\n\n.. code-block:: python\n\n from templated_email import send_templated_mail\n send_templated_mail(\n template_name='welcome',\n from_email='from@example.com',\n recipient_list=['to@example.com'],\n context={\n 'username':request.user.username,\n 'full_name':request.user.get_full_name(),\n 'signup_date':request.user.date_joined\n },\n # Optional:\n # cc=['cc@example.com'],\n # bcc=['bcc@example.com'],\n # headers={'My-Custom-Header':'Custom Value'},\n # template_prefix=\"my_emails/\",\n # template_suffix=\"email\",\n )\n\nIf you would like finer control on sending the email, you can use **get_templated_email**, which will return a django **EmailMessage** object, prepared using the **vanilla_django** backend:\n\n.. code-block:: python\n\n from templated_email import get_templated_mail\n get_templated_mail(\n template_name='welcome',\n from_email='from@example.com',\n to=['to@example.com'],\n context={\n 'username':request.user.username,\n 'full_name':request.user.get_full_name(),\n 'signup_date':request.user.date_joined\n },\n # Optional:\n # cc=['cc@example.com'],\n # bcc=['bcc@example.com'],\n # headers={'My-Custom-Header':'Custom Value'},\n # template_prefix=\"my_emails/\",\n # template_suffix=\"email\",\n )\n\nYou can also **cc** and **bcc** recipients using **cc=['example@example.com']**.\n\nYour template\n-------------\n\nThe templated_email/ directory needs to be the templates directory.\n\nThe backend will look in *my_app/templates/templated_email/welcome.email* :\n\n.. code-block:: python\n\n {% block subject %}My subject for {{username}}{% endblock %}\n {% block plain %}\n Hi {{full_name}},\n\n You just signed up for my website, using:\n username: {{username}}\n join date: {{signup_date}}\n\n Thanks, you rock!\n {% endblock %}\n\nIf you want to include an HTML part to your emails, simply use the 'html' block :\n\n.. code-block:: python\n\n {% block html %}\n

Hi {{full_name}},

\n\n

You just signed up for my website, using:\n

\n
username
{{username}}
\n
join date
{{signup_date}}
\n
\n

\n\n

Thanks, you rock!

\n {% endblock %}\n\nThe plain part can also be calculated from the HTML using `html2text `_. If you don't specify the plain block and `html2text `_ package is installed, the plain part will be calculated from the HTML part. You can disable this behaviour in settings.py :\n\n.. code-block:: python\n\n TEMPLATED_EMAIL_AUTO_PLAIN = False\n\nYou can also specify a custom function that converts from HTML to the plain part :\n\n.. code-block:: python\n\n def convert_html_to_text(html):\n ...\n\n TEMPLATED_EMAIL_PLAIN_FUNCTION = convert_html_to_text\n\nYou can globally override the template dir, and file extension using the following variables in settings.py :\n\n.. code-block:: python\n\n TEMPLATED_EMAIL_TEMPLATE_DIR = 'templated_email/' #use '' for top level template dir, ensure there is a trailing slash\n TEMPLATED_EMAIL_FILE_EXTENSION = 'email'\n\nYou can also set a value for **template_prefix** and **template_suffix** for every time you call **send_templated_mail**, if you wish to store a set of templates in a different directory. Remember to include a trailing slash.\n\nUsing with `Django Anymail `_\n=========================================================================\n\nAnymail integrates several transactional email service providers (ESPs) into Django, with a consistent API that lets you use ESP-added features without locking your code to a particular ESP. It supports Mailgun, Postmark, SendGrid, SparkPost and more.\n\nYou can use it with django-templated-email, just follow their instructions in their `quick start `_ to configure it.\n\nOptionally you can use their custom `EmailMessage `_ class with django-templated-email by using the following settings:\n\n.. code-block:: python\n\n # This replaces django.core.mail.EmailMessage\n TEMPLATED_EMAIL_EMAIL_MESSAGE_CLASS='anymail.message.AnymailMessage'\n\n # This replaces django.core.mail.EmailMultiAlternatives\n TEMPLATED_EMAIL_EMAIL_MULTIALTERNATIVES_CLASS='anymail.message.AnymailMessage'\n\n\nInline images\n==============\n\nYou can add inline images to your email using the *InlineImage* class.\n\nFirst get the image content from a file or a *ImageField*:\n\n.. code-block:: python\n\n # From a file\n with open('lena.png', 'rb') as lena:\n image = lena.read()\n\n # From an ImageField\n # Suppose we have this model\n class Company(models.Model):\n logo = models.ImageField()\n\n image = company.logo.read()\n\nThen create an instance of *InlineImage*:\n\n.. code-block:: python\n\n from templated_email import InlineImage\n\n inline_image = InlineImage(filename=\"lena.png\", content=image)\n\nNow pass the object on the context to the template when you send the email.\n\n.. code-block:: python\n\n send_templated_mail(template_name='welcome',\n from_email='from@example.com',\n recipient_list=['to@example.com'],\n context={'lena_image': inline_image})\n\nFinally in your template add the image on the html template block:\n\n.. code-block:: html\n\n \n\nNote: All *InlineImage* objects you add to the context will be attached to the e-mail, even if they are not used in the template.\n\n\nAdd link to view the email on the web\n=====================================\n\n.. code-block:: python\n\n # Add templated email to INSTALLED_APPS\n INSTALLED_APPS = [\n ...\n 'templated_email'\n ]\n\n.. code-block:: python\n\n # and this to your url patterns\n url(r'^', include('templated_email.urls', namespace='templated_email')),\n\n.. code-block:: python\n\n # when sending the email use the *create_link* parameter.\n send_templated_mail(\n template_name='welcome', from_email='from@example.com',\n recipient_list=['to@example.com'],\n context={}, create_link=True)\n\nAnd, finally add the link to your template.\n\n.. code-block:: html\n\n \n {% if email_uuid %}\n \n You can view this e-mail on the web here:\n \n here\n \n {% endif %}\n\nNotes:\n - A copy of the rendered e-mail will be stored on the database. This can grow\n if you send too many e-mails. You are responsible for managing it.\n - If you use *InlineImage* all images will be uploaded to your media storage,\n keep that in mind too.\n\n\nClass Based Views\n==================\n\nIt's pretty common for emails to be sent after a form is submitted. We include a mixin\nto be used with any view that inherit from Django's FormMixin.\n\nIn your view add the mixin and the usual Django's attributes:\n\n.. code-block:: python\n\n from templated_email.generic_views import TemplatedEmailFormViewMixin\n\n class AuthorCreateView(TemplatedEmailFormViewMixin, CreateView):\n model = Author\n fields = ['name', 'email']\n success_url = '/create_author/'\n template_name = 'authors/create_author.html'\n\nBy default the template will have the *form_data* if the form is valid or *from_errors* if the\nform is not valid in it's context.\n\nYou can view an example `here `_\n\nNow you can use the following attributes/methods to customize it's behavior:\n\nAttributes:\n\n**templated_email_template_name** (mandatory if you don't implement **templated_email_get_template_names()**):\n String naming the template you want to use for the email.\n ie: templated_email_template_name = 'welcome'.\n\n**templated_email_send_on_success** (default: True):\n This attribute tells django-templated-email to send an email if the form is valid.\n\n**templated_email_send_on_failure** (default: False):\n This attribute tells django-templated-email to send an email if the form is invalid.\n\n**templated_email_from_email** (default: **settings.TEMPLATED_EMAIL_FROM_EMAIL**):\n String containing the email to send the email from.\n\nMethods:\n\n**templated_email_get_template_names(self, valid)** (mandatory if you don't set **templated_email_template_name**):\n If the method returns a string it will use it as the template to render the email. If it returns a list it will send\n the email *only* with the first existing template.\n\n**templated_email_get_recipients(self, form)** (mandatory):\n Return the recipient list to whom the email will be sent to.\n ie:\n.. code-block:: python\n\n def templated_email_get_recipients(self, form):\n return [form.data['email']]\n\n**templated_email_get_context_data(**kwargs)** (optional):\n Use this method to add extra data to the context used for rendering the template. You should get the parent class's context from\n calling super.\n ie:\n.. code-block:: python\n\n def templated_email_get_context_data(self, **kwargs):\n context = super(ThisClassView, self).templated_email_get_context_data(**kwargs)\n # add things to context\n return context\n\n**templated_email_get_send_email_kwargs(self, valid, form)** (optional):\n Add or change the kwargs that will be used to send the e-mail. You should call super to get the default kwargs.\n ie:\n.. code-block:: python\n\n def templated_email_get_send_email_kwargs(valid, form):\n kwargs = super(ThisClassView, self).templated_email_get_send_email_kwargs(valid, form)\n kwargs['bcc'] = ['admin@example.com']\n return kwargs\n\n**templated_email_send_templated_mail(*args, **kwargs)** (optional):\n This method calls django-templated-email's *send_templated_mail* method. You could change this method to use\n a celery's task for example or to handle errors.\n\n\nFuture Plans\n=============\n\nSee https://github.com/vintasoftware/django-templated-email/issues?state=open\n\nUsing django_templated_email in 3rd party applications\n=======================================================\n\nIf you would like to use django_templated_email to handle mail in a reusable application, you should note that:\n\n* Your calls to **send_templated_mail** should set a value for **template_dir**, so you can keep copies of your app-specific templates local to your app (although the loader will find your email templates if you store them in */templates/templated_email*, if **TEMPLATED_EMAIL_TEMPLATE_DIR** has not been overidden)\n* If you do (and you should) set a value for **template_dir**, remember to include a trailing slash, i.e. *'my_app_email/'*\n* The deployed app may use a different backend which doesn't use the django templating backend, and as such make a note in your README warning developers that if they are using django_templated_email already, with a different backend, they will need to ensure their email provider can send all your templates (ideally enumerate those somewhere convenient)\n\nNotes on specific backends\n==============================\n\nUsing vanilla_django\n--------------------------\n\nThis is the default backend, and as such requires no special configuration, and will work out of the box. By default it assumes the following settings (should you wish to override them):\n\n.. code-block:: python\n\n TEMPLATED_EMAIL_TEMPLATE_DIR = 'templated_email/' #Use '' for top level template dir\n TEMPLATED_EMAIL_FILE_EXTENSION = 'email'\n\nFor legacy purposes you can specify email subjects in your settings file (but, the preferred method is to use a **{% block subject %}** in your template):\n\n.. code-block:: python\n\n TEMPLATED_EMAIL_DJANGO_SUBJECTS = {\n 'welcome':'Welcome to my website',\n }\n\nAdditionally you can call **send_templated_mail** and optionally override the following parameters::\n\n template_prefix='your_template_dir/' # Override where the method looks for email templates (alternatively, use template_dir)\n template_suffix='email' # Override the file extension of the email templates (alternatively, use file_extension)\n cc=['fubar@example.com'] # Set a CC on the mail\n bcc=['fubar@example.com'] # Set a BCC on the mail\n template_dir='your_template_dir/' # Override where the method looks for email templates\n connection=your_connection # Takes a django mail backend connection, created using **django.core.mail.get_connection**\n auth_user='username' # Override the user that the django mail backend uses, per **django.core.mail.send_mail**\n auth_password='password' # Override the password that the django mail backend uses, per **django.core.mail.send_mail**\n\n\nReleasing a new version of this package:\n========================================\n\nUpdate CHANGELOG file.\n\nExecute the following commands::\n\n bumpversion [major,minor,patch]\n python setup.py publish\n git push origin master --tags\n\n\nCommercial Support\n==================\n\nThis library, as others, is used in projects of Vinta clients. We are always looking for exciting work, so if you need any commercial support, feel free to get in touch: contact@vinta.com.br\n\n\n\n.. _Django: http://djangoproject.com\n.. |GitterBadge| image:: https://badges.gitter.im/vintasoftware/django-templated-email.svg\n.. _GitterBadge: https://gitter.im/vintasoftware/django-templated-email?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n.. |TravisBadge| image:: https://travis-ci.org/vintasoftware/django-templated-email.svg?branch=develop\n.. _TravisBadge: https://travis-ci.org/vintasoftware/django-templated-email\n.. |CoverageBadge| image:: https://coveralls.io/repos/github/vintasoftware/django-templated-email/badge.svg?branch=develop\n.. _CoverageBadge: https://coveralls.io/github/vintasoftware/django-templated-email?branch=develop\n.. |PypiversionBadge| image:: https://img.shields.io/pypi/v/django-templated-email.svg\n.. _PypiversionBadge: https://pypi.python.org/pypi/django-templated-email\n.. |PythonVersionsBadge| image:: https://img.shields.io/pypi/pyversions/django-templated-email.svg\n.. _PythonVersionsBadge: https://pypi.python.org/pypi/django-templated-email\n.. |LicenseBadge| image:: https://img.shields.io/pypi/l/django-templated-email.svg\n.. _LicenseBadge: https://github.com/vintasoftware/django-templated-email/blob/develop/LICENSE", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/vintasoftware/django-templated-email/", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-templated-email", "package_url": "https://pypi.org/project/django-templated-email/", "platform": "any", "project_url": "https://pypi.org/project/django-templated-email/", "project_urls": { "Homepage": "http://github.com/vintasoftware/django-templated-email/" }, "release_url": "https://pypi.org/project/django-templated-email/2.3.0/", "requires_dist": null, "requires_python": "", "summary": "A Django oriented templated / transaction email abstraction", "version": "2.3.0" }, "last_serial": 4686442, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "91b0fa4f1a9ecfd36135fba78ff3ca9d", "sha256": "103aa5c442ad0e9458a6fcb31dee923dc387dd3ea7ff04606b61d5da411c57a7" }, "downloads": -1, "filename": "django-templated-email-0.1.tar.gz", "has_sig": false, "md5_digest": "91b0fa4f1a9ecfd36135fba78ff3ca9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3570, "upload_time": "2011-03-16T22:02:37", "url": "https://files.pythonhosted.org/packages/d5/b4/c43a8f70b6073794acd69c17c65d48ab115c1bebdebfd235a3aa6dc4c23d/django-templated-email-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "a0f0d86774fd839433ffe594d84c0456", "sha256": "02f0720c8b6e06143637cfa15901d1f627afc0752fdc6ef23521995e7779b813" }, "downloads": -1, "filename": "django-templated-email-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a0f0d86774fd839433ffe594d84c0456", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4475, "upload_time": "2011-03-16T22:48:01", "url": "https://files.pythonhosted.org/packages/1c/19/465af7d43d733828780fe9c974a9984aa469e2a63d8f5edb9a4f33efb8e3/django-templated-email-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "4ca3fbc469dc4a448d555fd6d430002f", "sha256": "5b2fc6f66d8bc739eb70de4200c3920368ec33b68fff278905842c6bbb4c37d9" }, "downloads": -1, "filename": "django-templated-email-0.1.2.tar.gz", "has_sig": false, "md5_digest": "4ca3fbc469dc4a448d555fd6d430002f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5250, "upload_time": "2011-04-05T09:10:05", "url": "https://files.pythonhosted.org/packages/2c/7c/7bebeb3246d8a42d0897c739579055cfcf2c7cb942390e77e84b4a6d6261/django-templated-email-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "e371b092f8662134dfc9cc182d212fc8", "sha256": "8262df852b547e5525cb2cf4783a816fcba81024a67f31d470612bd1fb4914ef" }, "downloads": -1, "filename": "django-templated-email-0.1.3.tar.gz", "has_sig": false, "md5_digest": "e371b092f8662134dfc9cc182d212fc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5259, "upload_time": "2011-04-06T21:42:56", "url": "https://files.pythonhosted.org/packages/58/a4/126a738eb25ef56bfc284bd210e30b403b8441adc204e6ff110e25a6d407/django-templated-email-0.1.3.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "1dc8a2bc0ae4c082762570b65c90612d", "sha256": "c4ccede5d9c7d85ca408a725858ae637934945034076691a02149ec86a470db3" }, "downloads": -1, "filename": "django-templated-email-0.2.tar.gz", "has_sig": false, "md5_digest": "1dc8a2bc0ae4c082762570b65c90612d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5655, "upload_time": "2011-04-26T20:34:53", "url": "https://files.pythonhosted.org/packages/fb/78/4bd98a6b0dfbf4ca84458619b2e8fe83da3103b8f3c5af0e5e1e3f9a03b6/django-templated-email-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "dd6a573044f57affd8bfa665b76b590b", "sha256": "79022c3f5f826c380dfecea8d48cd06472aa061734c885d28a5b16bdcebc53f5" }, "downloads": -1, "filename": "django-templated-email-0.2.1.tar.gz", "has_sig": false, "md5_digest": "dd6a573044f57affd8bfa665b76b590b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5753, "upload_time": "2011-04-29T22:17:07", "url": "https://files.pythonhosted.org/packages/6d/53/d071d42c773e42e859ea56d74b9388ecf60e8ece3cb8e69915d29f7e59eb/django-templated-email-0.2.1.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "4cad424e9d3a654d64d844d5259decd5", "sha256": "40c330b68b0a3e89b95de861b4e01dba6874e1ef7e9a85bfc18449acf66667b7" }, "downloads": -1, "filename": "django_templated_email-0.3-py2.6.egg", "has_sig": false, "md5_digest": "4cad424e9d3a654d64d844d5259decd5", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 13591, "upload_time": "2011-10-10T17:02:10", "url": "https://files.pythonhosted.org/packages/ff/86/862cc6a4d9ee34126d9925209ed3343fad7611efcb7e53b571db244c9aaa/django_templated_email-0.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "2d624dc236f925a272d13ec5582879c1", "sha256": "e77a10eddb9132823a37de5f5da341bcc44c7e55db3215b1ad8ff0479f1b7862" }, "downloads": -1, "filename": "django-templated-email-0.3.tar.gz", "has_sig": false, "md5_digest": "2d624dc236f925a272d13ec5582879c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6454, "upload_time": "2011-10-10T17:05:22", "url": "https://files.pythonhosted.org/packages/fc/b0/9313c36f8af09a079fec11d4f98b79fecb1963a906331b2f4338b396c03e/django-templated-email-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "4bfed8c32306dddf2519681afb2ee8f6", "sha256": "094c51ab143b2d908a5ed8776d58155ee7cb4961b3ff27b340e96df434d4c83f" }, "downloads": -1, "filename": "django-templated-email-0.3.1.tar.gz", "has_sig": false, "md5_digest": "4bfed8c32306dddf2519681afb2ee8f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6595, "upload_time": "2011-10-26T09:42:28", "url": "https://files.pythonhosted.org/packages/6e/0f/2e76fe0f307268f62dd3859d90cc17e3981f2102af39951fb99a783465b4/django-templated-email-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "ebe6f0e5334d9fe37c6764fc97748af4", "sha256": "f19f1f379d28a71dffe963e58c13093f166b72387eac282f4419f84636e38025" }, "downloads": -1, "filename": "django-templated-email-0.3.2.tar.gz", "has_sig": false, "md5_digest": "ebe6f0e5334d9fe37c6764fc97748af4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6668, "upload_time": "2011-11-01T05:59:16", "url": "https://files.pythonhosted.org/packages/4d/55/6d21d7532ecce9ca09f1f39cce41a70a96fb3b3b121592f44bb021039ea0/django-templated-email-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "e745738d4e7273347e5d1a528dbeb758", "sha256": "563f1ebd6cbaf3abf7456399348eb54a95e788094e380fd09c69567849c504de" }, "downloads": -1, "filename": "django-templated-email-0.3.3.tar.gz", "has_sig": false, "md5_digest": "e745738d4e7273347e5d1a528dbeb758", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6658, "upload_time": "2012-01-13T12:11:00", "url": "https://files.pythonhosted.org/packages/b2/e2/fbb37ef53b481d78eee3d39697ede17203834d119b4cdb195646e663b0d8/django-templated-email-0.3.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "e31151320b017336a8a0d9e974a4b085", "sha256": "9c0116cc4f933fb0d88de5113395a9b35b611374cbb8e57646f54b7f650b7fe2" }, "downloads": -1, "filename": "django-templated-email-0.4.tar.gz", "has_sig": false, "md5_digest": "e31151320b017336a8a0d9e974a4b085", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6846, "upload_time": "2012-01-18T08:40:44", "url": "https://files.pythonhosted.org/packages/d8/d6/265d627e8bc288eec5ef79cb33bdc2015a52642c997946266eff44c4d64f/django-templated-email-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7bdd231d326678c59c7fa5d710a252ce", "sha256": "121ef908764041c9a92c3ac92e323553795c1d523445d35e073febe42b021099" }, "downloads": -1, "filename": "django-templated-email-0.4.1.tar.gz", "has_sig": false, "md5_digest": "7bdd231d326678c59c7fa5d710a252ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7158, "upload_time": "2012-01-31T16:52:02", "url": "https://files.pythonhosted.org/packages/6d/55/ea46341101d59d493f70d52c32acd28e6fc52184497c4a7be78a9c000cea/django-templated-email-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "292c15d44d965b1e00b601947350e91a", "sha256": "d66a8998d00d04f5dfd94ba9dd2d92231219c3b2ebe77b136e00c243ae067605" }, "downloads": -1, "filename": "django-templated-email-0.4.2.tar.gz", "has_sig": false, "md5_digest": "292c15d44d965b1e00b601947350e91a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8156, "upload_time": "2012-04-14T10:45:59", "url": "https://files.pythonhosted.org/packages/90/74/741bd1aaddd73ffbaeba1d161c8f17ed69612d9e29e033f946cda3e6a243/django-templated-email-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "d35161f01fd380d2b09f385fc6995ad7", "sha256": "dd03487ff0aadc98ed88bdf2e89a93683ab93daf8286ce231bc0355d126b4e37" }, "downloads": -1, "filename": "django-templated-email-0.4.3.tar.gz", "has_sig": false, "md5_digest": "d35161f01fd380d2b09f385fc6995ad7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8487, "upload_time": "2012-04-14T11:27:42", "url": "https://files.pythonhosted.org/packages/79/bb/c0f5ee2a7671623e9ad956df7c90c37d6d60e047fc4d8c1ed9013a333282/django-templated-email-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "5472b3818b98ea52cc6bd18f1b48fce5", "sha256": "4c1c0f7cd7efdd35b62eca8934be4a563edd4246128964281f911a13abec08a6" }, "downloads": -1, "filename": "django-templated-email-0.4.4.tar.gz", "has_sig": false, "md5_digest": "5472b3818b98ea52cc6bd18f1b48fce5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8530, "upload_time": "2012-04-15T11:33:52", "url": "https://files.pythonhosted.org/packages/21/c3/da32202b565eca1c332d1d9109fc20db9125f0683ca4885706ffb96fd8ae/django-templated-email-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "49421233fada6ceb1ff72c271d038bfc", "sha256": "e9116110d216191e5b9b3c5130707c91dc0e429c0756ffecbea7988ebbe3d6b7" }, "downloads": -1, "filename": "django-templated-email-0.4.5.tar.gz", "has_sig": false, "md5_digest": "49421233fada6ceb1ff72c271d038bfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8543, "upload_time": "2012-06-11T09:14:23", "url": "https://files.pythonhosted.org/packages/34/f9/a5ae9953142f7d185d842d43c5c9ebbd7865ed5c949c2d805fbc58148e54/django-templated-email-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "91f84bb2246eabf07542a3b24da53612", "sha256": "1261212a405a69b8ee4fc03c021f7f312f1addc4ac6ee6b5ac4f02f843720ebb" }, "downloads": -1, "filename": "django-templated-email-0.4.6.tar.gz", "has_sig": false, "md5_digest": "91f84bb2246eabf07542a3b24da53612", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8759, "upload_time": "2012-06-27T11:11:56", "url": "https://files.pythonhosted.org/packages/71/18/0eb5b78030d76062037fd0fb0e76ef0d87bdbc33a01933e8585ec233558d/django-templated-email-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "d1602ea21e87aaee162a61defefa6d53", "sha256": "607e15ee89240f152fee5e8380e31639ccb4f5cd6103dcf26080b9a1f6163f1f" }, "downloads": -1, "filename": "django-templated-email-0.4.7.tar.gz", "has_sig": false, "md5_digest": "d1602ea21e87aaee162a61defefa6d53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9206, "upload_time": "2012-06-28T10:12:44", "url": "https://files.pythonhosted.org/packages/10/7c/3ceb5e872776bb7ceb567df90ff67f179c5be1cbbebaf73bec75b1ac0d96/django-templated-email-0.4.7.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "0b2de76e719fad24b54351c27752b280", "sha256": "9f2dde4709bbce9f12f6426485e227fae8826639379042e6d7b65dbdaf63b065" }, "downloads": -1, "filename": "django-templated-email-0.4.9.tar.gz", "has_sig": false, "md5_digest": "0b2de76e719fad24b54351c27752b280", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11468, "upload_time": "2013-04-28T10:52:24", "url": "https://files.pythonhosted.org/packages/7f/cf/94f3e5845d3e8215f3ee0fc2c82c5a79483dfacaa03c2684f7aec08493c0/django-templated-email-0.4.9.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "ebe4af985cce9c5b04687a96536ddfb1", "sha256": "5bd3476e41f2beb4b4408ccb2fda0bac2366932195f870b86241185cda998d2d" }, "downloads": -1, "filename": "django-templated-email-0.5.tar.gz", "has_sig": false, "md5_digest": "ebe4af985cce9c5b04687a96536ddfb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10009, "upload_time": "2016-07-12T00:11:27", "url": "https://files.pythonhosted.org/packages/e0/27/0f816aa843a08857d739282af4c54ae2dce413328607aace5635f0620a09/django-templated-email-0.5.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "098853f902ab2d0fd3b8a35c2c760fe6", "sha256": "956df8b94b2d7a2cc2d13b3080398d9e96e3160e8f23f8d4799ae66c7e72531f" }, "downloads": -1, "filename": "django-templated-email-1.0.tar.gz", "has_sig": false, "md5_digest": "098853f902ab2d0fd3b8a35c2c760fe6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11106, "upload_time": "2016-09-10T21:21:46", "url": "https://files.pythonhosted.org/packages/e9/cc/52b8d9771b8e135903affca5385d53c205ce02810b2adf6b17f822cd896c/django-templated-email-1.0.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "e95b3ab729028e68055c2bdc54297a76", "sha256": "705946b4002c0a32d12a29577ea921bd4f089b4809703bd8bb2786a9e2b0db07" }, "downloads": -1, "filename": "django-templated-email-2.0.tar.gz", "has_sig": false, "md5_digest": "e95b3ab729028e68055c2bdc54297a76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12349, "upload_time": "2016-11-11T18:34:56", "url": "https://files.pythonhosted.org/packages/a1/78/443ba20ba7feaace0ce35f26c331866de4f8603644feaee0a065a67b233b/django-templated-email-2.0.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "a464d653ce0a0276c9293d3964a97d42", "sha256": "5bd3690f0bd65724afb03c5f7a04ccf911ff4aafa7f461d448b8a732abccd8ea" }, "downloads": -1, "filename": "django-templated-email-2.1.tar.gz", "has_sig": false, "md5_digest": "a464d653ce0a0276c9293d3964a97d42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12866, "upload_time": "2016-12-27T17:29:21", "url": "https://files.pythonhosted.org/packages/93/f0/2ee0dd858b0d17f6b93dabc92d61732fb5778c4d78c666468945a9c54a01/django-templated-email-2.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "a8ced4da201726929be9607a1fd9d00c", "sha256": "120e1793edb58768297f3fcb42a89934aca1594ef520e6343a8b28075ee899e6" }, "downloads": -1, "filename": "django-templated-email-2.2.0.tar.gz", "has_sig": false, "md5_digest": "a8ced4da201726929be9607a1fd9d00c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13697, "upload_time": "2017-05-03T21:02:35", "url": "https://files.pythonhosted.org/packages/78/7f/8b749c363f2ccd6b181dff384f6ae845a0656284ed419a097d98c2a42661/django-templated-email-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "869d60ebc2bb70db66287d32a37325c0", "sha256": "536c4e5ae099eabfb9aab36087d4d7799948c654e73da55a744213d086d5bb33" }, "downloads": -1, "filename": "django-templated-email-2.3.0.tar.gz", "has_sig": false, "md5_digest": "869d60ebc2bb70db66287d32a37325c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18119, "upload_time": "2019-01-11T17:43:54", "url": "https://files.pythonhosted.org/packages/62/73/515aa27ad1cc49e77cba33f9d1aa9ca6f0414f2bf9a61ea9df92ecea0677/django-templated-email-2.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "869d60ebc2bb70db66287d32a37325c0", "sha256": "536c4e5ae099eabfb9aab36087d4d7799948c654e73da55a744213d086d5bb33" }, "downloads": -1, "filename": "django-templated-email-2.3.0.tar.gz", "has_sig": false, "md5_digest": "869d60ebc2bb70db66287d32a37325c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18119, "upload_time": "2019-01-11T17:43:54", "url": "https://files.pythonhosted.org/packages/62/73/515aa27ad1cc49e77cba33f9d1aa9ca6f0414f2bf9a61ea9df92ecea0677/django-templated-email-2.3.0.tar.gz" } ] }