{% extends 'base.html' %} {% block title %}Compose email{% endblock %} {% block content %}

Compose an email

{% if error %} {{ error }} {% elif generic_email_sample %}
{% csrf_token %}

Recipients

Active users are listed below in black. Inactive users are gray.
{% for u in users %} {{ u }} - {{ u.email }}
{% endfor %}

Email content

Title background color:

Your email will look like this...

{{ generic_email_sample|safe }}
{% else %} A generic email format has not been customized for your organization yet. You'll need to create one before you can send email broadcasts from within {{ site_title }}. Please visit the customizations page to upload a template. {% endif %} {% endblock %}