Templated Email for Python Projects with Jinja2
Project description
Welcome to TemplateMail
TemplateMail is a simple Python library that solves most projects' email templating and delivery needs with minimal hassle. Suppose you want to send a welcome email to a new user using Mailgun:
import templatemail
import templatemail.engines.mailgun
# Credentials for Mailgun
MAILGUN_API_KEY = 'YOUR API KEY'
MAILGUN_DOMAIN = 'MAILGUN_DOMAIN'
# The engine is in charge of sending email using a backend system.
engine = templatemail.engines.mailgun.MailgunDeliveryEngine(
api_key=MAILGUN_API_KEY,
domain_name=MAILGUN_DOMAIN)
# The mailer is in charge of rendering templates and sending them using an engine.
mailer = templatemail.TemplateMail(
template_dirs=['email_templates'],
delivery_engine=engine)
# Using the two, you can send templates.
template_name = 'welcome.html'
result = mailer.send_email(
to_addresses=['test@example.com'],
from_address='from@example.com',
template_name=template_name,
user_name='Ken'
)
welcome.html
is an email template used to render the subject, html, and text versions of an email. Let's have a look at email_templates/welcome.html
:
{% block subject %}Welcome to our system{% endblock %}
{% block html_body %}
<h1>Welcome to our system, {{ user_name }}</h1>
<p>We think you'll really enjoy it here.</p>
{% endblock %}
{% block text_body %}
Welcome to our system, {{ user_name }}
--------------------------------------------
We think you'll really enjoy it here.
{% endblock %}
The subject
block renders the subject, while html_body
and text_body
render the HTML and text versions of the email respectively. The work of composing the correct mime envelope, as well as delivery, is handled by an engine. At this time, TemplateMail has native Mailgun and SMTP backends, however you are also free to write your own. (See Writing your own engine)
It's that simple.
Installation
You can install templatemail like any other Python module.
pip install templatemail
NOTE: Only Python 3 is supported.
Read More
Read the documentation online at Read The Docs.
Get in touch
Have a pull request or an issue? Use Github.
Legal stuff
© Copyright 2019 Ken Kinder. Includes work from Mailgun, which is © Copyright 2014 Mailgun.
TemplateMail is licensed under the Apache 2.0 license. See LICENSE for details.
Includes templates from the Mailgun Responsive Templates repository. See LICENSE-mailgun-templates for details on its license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file templatemail-1.1.0.tar.gz
.
File metadata
- Download URL: templatemail-1.1.0.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84979156922f573c32ec41c53c17618924f3c07a8fd3bcd0975e55579291c174 |
|
MD5 | 55696dcbd02bafe62aedf561b449834b |
|
BLAKE2b-256 | d3bfa4c0892c2900b06ead523dea059452730f07b12f3ff42e04340cd3ddea26 |
File details
Details for the file templatemail-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: templatemail-1.1.0-py3-none-any.whl
- Upload date:
- Size: 17.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dd4913f4021477fc3a6ee39b96835fd896e1f86c09e996b43ba485485010aa4 |
|
MD5 | 26973fc9c1719c0b6598f563ab5ebb93 |
|
BLAKE2b-256 | 0c36929b0f215ce7b2c310bda9e13d110b6460bc079a368b7da90bb095be9c32 |