{% extends 'psu_base.html' %} {% load base_taglib %} {%block title%}Email Test Page{%endblock%} {% block pagecontent %}

Email Test Page

Default Recipient

The default recipient will receive any non-production emails intended for recipients who are not allowed to receive them. The default recipient will always be the CAS-authenticated user (not the user they are impersonating). When the user is not authenticated, the app should offer-up a way for them to supply the email address where they would like to receive the test emails (see "Dual Credit Application" as example).

The current default recipient is:   {{default_recipient}}


Testing Groups

Non-prod recipients are defined in GTVSDAX. There used to be an interface to edit the lists in the "IS Change Control" (Banweb) by clicking the "Email Console" link.

{%for aa in testers%} {{aa}}, {%endfor%}


Send a Test Email

{%csrf_token%}
{% if is_non_production %}
The address you enter will be screened for allowed non-prod send-ability {% endif %}
{% endblock %}