Skip to main content

django-mail-builder

Build EmailMessages easily from templates

QuickStart

In your code, you can use the build_message function to build an EmailMessage class, sourcing its values from a template.

def build_message(template_names, extra_context=None, force_multipart=False,
                  **defaults):

Parameters:

template_names:: A list of template names to select from. A single template name will be wrapped in a list.

extra_context:: Extra context to be passed when rendering blocks from the template.

force_multipart:: Force use of EmailMultipartMessage instead of EmailMessage.

If a html block is provided then EmailMultipartMessage will be used anyway.

defaults:: Default values to be passed to the message class. These will be overidden by any template blocks.

Template blocks

Scalar fields:

These blocks will be rendered as is, and passed to the message. If an 'html' block is passed, a EmailMultipartMessage will be constructed, and the html content will be added as a text/html alternative.

  • subject
  • from_email
  • body
  • html

List fields:

These blocks will be rendered, and then split by lines using str.splitlines.

  • to
  • bcc
  • cc
  • reply_to

Views

A utility view is provided that extends django.views.generic.FormView to send an email on form valid.

from mail_builder.views import EmailFormView

When form_valid is called, it will build a message using email_template, and pass the form's cleaned_data in context as form. It will then send the message using the fail_silently flag as set on the class.

Additional class properties:

  • email_template
  • email_kwargs = {}
  • fail_silently = False

Two extra methods are added to allow control over context and params:

    def get_email_context(self, form, **kwargs):
        kwargs.setdefault('form', form.cleaned_data)
        return kwargs

    def get_email_kwargs(self, form, **kwargs):
        kwargs.update(self.email_kwargs)
        return kwargs

Template Tags

Two template tags have been added to help embeding files into your emails.

To use them, add mail_builder to your INSTALLED_APPS setting, and include {% load mailbuilder %} in your template.

    <img src="{% cid_static 'static/file/name.png' %}">
    <img src="{% cid_media user.icon %}">

This will render the files using "cid" URIs, and place MIMEImage objects in a list in the context.

    msg = build_message(..., inline_images=True)

Release files for django-mail-builder 0.5.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for django-mail-builder 0.5.1
File Interpreter ABI Platform
django_mail_builder-0.5.1-py3-none-any.whl Python 3 none any Details

Release files / django_mail_builder-0.5.1-py3-none-any.whl

Download URL django_mail_builder-0.5.1-py3-none-any.whl
Size 6.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
f1c0cc6e159609c2f7c8422e452e031390b3f5d40f97080c0beffa403adce4a7
BLAKE2b-256 checksum
How to use checksums
f1e5460aa0574ef2bb1193eff85607dad9950d90c1d0eaf73ae90692babab157
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release history Release notifications | RSS feed

This release

0.5.1 This release

1 release file

0.5.0

1 release file

0.3

1 release file

0.2

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page