Skip to main content

Convenient helper to send multipart/alternative or regular email based on templates.

Project description

This small module is inspired by my need for sending templated emails, with the
option of attaching an HTML formatted alternative.

Installation
=============

Installing::

pip install django-email-templates

Example usage
==============

The following example demonstrates how to send a templated email, in this case
the user has submitted a contact form. The module will look for the templates
contact.txt and contact.html which will serve as the plaintext and html alternative
of the email. The default location of the templates is a directory named *email_templates*.::

from email_templates import send_templated_mail

context = {
'name': request.POST['name'],
'email': request.POST['email'],
'telephone': request.POST['phone'],
'message': request.POST['message'],
}

success = send_templated_mail(
'Contact form submission',
None,
[a[1] for a in settings.ADMINS],
'contact',
context
)

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-email-templates-0.1.tar.gz (3.4 kB view hashes)

Uploaded source

Built Distribution

django_email_templates-0.1-py2.6.egg (4.0 kB view hashes)

Uploaded 2 6

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page