{% if complete_message %}

{{ complete_message }}

{% endif %}

Three types of instant emails are available:

After Withdrawal Date
An email sent immediately when a student withdraws from a course for a term, after the no W withrawal period has ended.

Completely Withdrawn
An email sent immediately when a student withdraws from all their courses for a term, any time after the add/drop period has ended.

Drop Below 6 Credits
An email sent immediately when a student drops below 6 credits for a term, after the add/drop period has ended.

After Withdrawal Date

{% for key in emailList %} {% if key.email_type == 'AWD' %} {% endif %} {% endfor %}
{{ key.recipient }}
{% if key.active == 1 %} {% else %} {% endif %}

Completely Withdrawn

{% for key in emailList %} {% if key.email_type == 'CW' %} {% endif %} {% endfor %}
{{ key.recipient }}
{% if key.active == 1 %} {% else %} {% endif %}

Drop Below 6 Credits

{% for key in emailList %} {% if key.email_type == '6D' %} {% endif %} {% endfor %}
{{ key.recipient }}
{% if key.active == 1 %} {% else %} {% endif %}

Use the form below to send an activity summary to an email address. The last five most recent summaries are listed below.

{% for key in sentSummaryEmails %} Activity from {{key.email_start_dt}} to {{key.email_end_dt}}, sent to {{key.email_recipient}}.
{%endfor%}


View Enrollment Activity


Quick Reports for Active Terms


View Email Log

{% for key in sentSummaryEmails %} {% endfor %}