{% extends "cms/admin_home.html" %} {% load sekizai_tags i18n %} {% block content %}

{% trans "Email Students: Confirmation" %}

{% trans "Please confirm the following before sending" %}:


{% if testemail %}

{% trans "Test Email (No Recipients)" %}


{% endif %}

{% trans "From" %}: {{ from_name }} <{{ from_address }}>

{% trans "Subject" %}: {{ subject }}


{% trans "Message" %}
{% if richTextChoice == "HTML" %} {{ html_message|safe }} {% else %}
{{ message }}
{% endif %}

{% if month and not series and not customers_to_send %} {% blocktrans %}Events in {{ month }}{% endblocktrans %}: {% elif series and not customers_to_send %} {% trans "Students Registered for Events" %}: {% elif customers_to_send %} {% trans "Specific Customers" %}: {% endif %}

    {% for s in events_to_send %}
  • {{ s.name }}
  • {% endfor %} {% for s in customers_to_send %}
  • {{ s.fullName }} <{{ s.email }}>
  • {% endfor %}
{% if to %}
CC:
    {% for item in to %}
  • {{ item }}
  • {% endfor %}
{% endif %} {% if cc %}
CC:
    {% for item in cc %}
  • {{ item }}
  • {% endfor %}
{% endif %} {% if bcc or emails %}
BCC:
    {% for item in bcc %}
  • {{ item }}
  • {% endfor %} {% for item in emails %}
  • {{ item }}
  • {% endfor %}
{% endif %}
{% trans "Send Emails" %} {% trans "Return To Form" %} {% endblock %}