-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #333 from edx/andya/update-email
Improve learner email messages
- Loading branch information
Showing
8 changed files
with
189 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
edx_proctoring/templates/emails/proctoring_attempt_satisfactory_email.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{% load i18n %} | ||
|
||
<p> | ||
{% blocktrans %} | ||
Hi {{ username }}, | ||
{% endblocktrans %} | ||
</p> | ||
<p> | ||
{% blocktrans %} | ||
Your proctored exam "{{ exam_name }}" in | ||
<a href="{{ course_url }}">{{ course_name }}</a> was reviewed and you | ||
met all exam requirements. You can view your grade on the course | ||
progress page. | ||
{% endblocktrans %} | ||
</p> | ||
<p> | ||
{% blocktrans %} | ||
If you have any questions about your results, contact {{ platform }} | ||
support at | ||
<a href="mailto:{{ contact_email }}?Subject={{ support_email_subject }}"> | ||
{{ contact_email }} | ||
</a>. | ||
{% endblocktrans %} | ||
</p> |
9 changes: 0 additions & 9 deletions
9
edx_proctoring/templates/emails/proctoring_attempt_status_email.html
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
edx_proctoring/templates/emails/proctoring_attempt_submitted_email.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{% load i18n %} | ||
|
||
<p> | ||
{% blocktrans %} | ||
Hi {{ username }}, | ||
{% endblocktrans %} | ||
</p> | ||
<p> | ||
{% blocktrans %} | ||
Your proctored exam "{{ exam_name }}" in | ||
<a href="{{ course_url }}">{{ course_name }}</a> was submitted | ||
successfully and will now be reviewed to ensure all proctoring exam | ||
rules were followed. You should receive an email with your updated exam | ||
status within 5 business days. | ||
{% endblocktrans %} | ||
</p> | ||
<p> | ||
{% blocktrans %} | ||
If you have any questions about proctoring, contact {{ platform }} | ||
support at | ||
<a href="mailto:{{ contact_email }}?Subject={{ support_email_subject }}"> | ||
{{ contact_email }} | ||
</a>. | ||
{% endblocktrans %} | ||
</p> |
27 changes: 27 additions & 0 deletions
27
edx_proctoring/templates/emails/proctoring_attempt_unsatisfactory_email.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% load i18n %} | ||
|
||
<p> | ||
{% blocktrans %} | ||
Hi {{ username }}, | ||
{% endblocktrans %} | ||
</p> | ||
<p> | ||
{% blocktrans %} | ||
Your proctored exam "{{ exam_name }}" in | ||
<a href="{{ course_url }}">{{ course_name }}</a> was reviewed and the | ||
team found one or more violations of the proctored exam rules. Examples | ||
of behaviors that may result in a rules violation include browsing | ||
the internet, using a phone, or getting help from another person. As a | ||
result of the violation(s), you did not successfully meet the proctored | ||
exam requirements. | ||
{% endblocktrans %} | ||
</p> | ||
<p> | ||
{% blocktrans %} | ||
If you have any questions about your results, contact {{ platform }} | ||
support at | ||
<a href="mailto:{{ contact_email }}?Subject={{ support_email_subject }}"> | ||
{{ contact_email }} | ||
</a>. | ||
{% endblocktrans %} | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.