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

Compose an email

{% if generic_email_sample %}
{% csrf_token %}

Recipients

Active NEMO 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 NEMO. Please visit the customizations page to upload a template. {% endif %} {% endblock %}