A Django application to send email using django's templating system
Project description
==========
Django-Template-Mail
==========
:Info: A Django application to send email using django's templating system
:Author: Benoît Bar (http://github.com/benoitbar, http://twitter.com/benoitbar)
Get started
===========
Installing
----------
::
pip install django-template-mail
Configure your mail backend
---------------------------
django-template-mail ships with same backends as Django (https://docs.djangoproject.com/en/dev/topics/email/#email-backends). Just replace **django.core.mail** by **templatemail** ::
EMAIL_BACKEND = 'templatemail.backends.smtp.EmailBackend'
Convert HTML into plain text
----------------------------
By default, django-template-backend use a minimalist process to convert HTML into plain text. I suggest you to use **html2text** (https://github.com/aaronsw/html2text) ::
EMAIL_HTML2TEXT = 'html2text.html2text'
You can also write your own method and use it ::
EMAIL_HTML2TEXT = 'your.module.yourhtml2textmethod'
Sending emails
==============
To send email with django-template-mail you simply should use the method described in the Django documentation (https://docs.djangoproject.com/en/dev/topics/email/) and replacing the **message** attribute as a tuple **('directory_template/template.html', {'key': 'value'}, context_instance)** ::
from django.core.mail import send_mail
send_mail(
'Welcome',
(
'mail/welcome.html',
{
'username': request.user.username,
'full_name': request.user.get_full_name(),
'signup_date': request.user.date_joined
}
),
'from@example.com',
['to@example.com'],
fail_silently=False
)
django-template-mail looked in django template directories/loaders ::
<p>Hi {{full_name}},</p>
<p>
You just signed up using:
<ul>
<li>username: {{username}}</li>
<li>join date: {{signup_date}}</li>
</ul>
</p>
<p>Thanks!</p>
Django-Template-Mail
==========
:Info: A Django application to send email using django's templating system
:Author: Benoît Bar (http://github.com/benoitbar, http://twitter.com/benoitbar)
Get started
===========
Installing
----------
::
pip install django-template-mail
Configure your mail backend
---------------------------
django-template-mail ships with same backends as Django (https://docs.djangoproject.com/en/dev/topics/email/#email-backends). Just replace **django.core.mail** by **templatemail** ::
EMAIL_BACKEND = 'templatemail.backends.smtp.EmailBackend'
Convert HTML into plain text
----------------------------
By default, django-template-backend use a minimalist process to convert HTML into plain text. I suggest you to use **html2text** (https://github.com/aaronsw/html2text) ::
EMAIL_HTML2TEXT = 'html2text.html2text'
You can also write your own method and use it ::
EMAIL_HTML2TEXT = 'your.module.yourhtml2textmethod'
Sending emails
==============
To send email with django-template-mail you simply should use the method described in the Django documentation (https://docs.djangoproject.com/en/dev/topics/email/) and replacing the **message** attribute as a tuple **('directory_template/template.html', {'key': 'value'}, context_instance)** ::
from django.core.mail import send_mail
send_mail(
'Welcome',
(
'mail/welcome.html',
{
'username': request.user.username,
'full_name': request.user.get_full_name(),
'signup_date': request.user.date_joined
}
),
'from@example.com',
['to@example.com'],
fail_silently=False
)
django-template-mail looked in django template directories/loaders ::
<p>Hi {{full_name}},</p>
<p>
You just signed up using:
<ul>
<li>username: {{username}}</li>
<li>join date: {{signup_date}}</li>
</ul>
</p>
<p>Thanks!</p>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-template-mail-0.1.tar.gz.
File metadata
- Download URL: django-template-mail-0.1.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92e117ecc178f6ac242bfdb078d2d1ce6832a913486274dc8dc842665a7b3a88
|
|
| MD5 |
fd79e25a16e0fd7e9cee2a7f835bb97a
|
|
| BLAKE2b-256 |
168fff3c6745cea51316f248f03bb7dd0c948ac92ca8bcb32925c6818cf4036d
|