Add ability to send email in bulk

This commit is contained in:
rubenwardy
2020-12-05 19:38:16 +00:00
parent 683b855584
commit 3efda30b98
7 changed files with 107 additions and 39 deletions

View File

@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block title %}
{{ _("Send email to %(username)s", username=user.display_name) }}
{% endblock %}
{% block content %}
<h1>{{ self.title() }}</h1>
{% from "macros/forms.html" import render_field, render_submit_field %}
<form action="" method="POST" class="form" role="form">
{{ form.hidden_tag() }}
{{ render_field(form.subject) }}
{{ render_field(form.text, fieldclass="form-control markdown") }}
{{ render_submit_field(form.submit) }}
</form>
{% endblock %}