{% extends "withnav_template.html" %} {% from "components/email-message.html" import email_message %} {% from "components/page-footer.html" import page_footer %} {% from "components/textbox.html" import textbox %} {% block page_title %} Send emails – GOV.UK Notify {% endblock %} {% block maincolumn_content %}

Send emails

{% if templates %}
{% for template in templates %}
{{ email_message(template.subject, template.formatted_as_markup, name=template.name) }}
{% endfor %}
{% endif %}

Add a new template

{% endblock %}