{% extends "orga/mails/base.html" %} {% load bootstrap4 %} {% load i18n %} {% block mail_content %}

{% blocktranslate trimmed %} You can edit the default templates and your custom templates for emails here. If you want to send emails to some or all of your speakers, head over to the "Send Emails" tab. Mails queued for sending are in the "Outbox" tab. {% endblocktranslate %}

{% blocktranslate trimmed %} There are different placeholders available depending on the template type. They are explained in detail once you start editing a template. {% endblocktranslate %}

{% csrf_token %}

{% translate "Acknowledge Mail" %}

{% bootstrap_form ack layout='event' %}
{% csrf_token %}

{% translate "Accept Mail" %}

{% bootstrap_form accept layout='event' %}
{% csrf_token %}

{% translate "Rejection Mail" %}

{% bootstrap_form reject layout='event' %}
{% csrf_token %}

{% translate "New schedule version" %}

{% bootstrap_form update layout='event' %}
{% csrf_token %}

{% translate "Unanswered questions reminder" %}

{% bootstrap_form remind layout='event' %}
{% for template in other %}
{% csrf_token %}

{% translate "Custom Mail" %}

{% bootstrap_form template layout='event' %}
{% endfor %}
{% endblock %}