{% extends "base.html" %} {% from "_macros.html" import render_field_with_errors, render_field %} {% block content %}
Send bulk mail
{{ mail_form.hidden_tag() }} {{ render_field_with_errors(mail_form.recipients) }} {{ render_field_with_errors(mail_form.subject) }} {{ render_field_with_errors(mail_form.body, description="In the message body, you can use the format syntax with the user variable to add user-specific information, e.g. {user.name}") }} {{ render_field(mail_form.submit) }}
{% endblock %}