Update copy for the upgrade_reminder emails

This commit is contained in:
Tyler Hallada
2017-10-04 15:51:57 -04:00
parent 4acdcc698e
commit efe814c64f
3 changed files with 43 additions and 19 deletions

View File

@@ -4,13 +4,18 @@
{% block preview_text %}
{% if course_ids|length > 1 %}
{% blocktrans trimmed %}
We hope you are enjoying {{ course_name }}, and other courses on edX.org.
Upgrade by {{ user_schedule_upgrade_deadline_time }} to get a shareable certificate!
We hope you are enjoying learning with us so far in {{ course_name }}, and other courses on
{{ platform_name }}! A verified certificate will allow you to highlight your new knowledge and
skills. It's official, and easily shareable.
Upgrade by {{ user_schedule_upgrade_deadline_time }}.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
We hope you are enjoying {{ course_name }}.
Upgrade by {{ user_schedule_upgrade_deadline_time }} to get a shareable certificate!
We hope you are enjoying learning with us so far in {{ course_name }}! A verified certificate
will allow you to highlight your new knowledge and skills. It's official, and easily shareable.
Upgrade by {{ user_schedule_upgrade_deadline_time }}.
{% endblocktrans %}
{% endif %}
{% endblock %}
@@ -21,19 +26,33 @@
<td>
<h1>{% trans "Upgrade now" %}</h1>
<p>
{% if course_ids|length > 1 %}
{% if course_ids|length > 1 %}
<p>
{% blocktrans trimmed %}
We hope you are enjoying <strong>{{ course_name }}</strong>, and other courses on edX.org.
Upgrade by {{ user_schedule_upgrade_deadline_time }} to get a shareable certificate!
We hope you are enjoying learning with us so far in <strong>{{ course_name }}</strong>, and
other courses on {{ platform_name }}! A verified certificate will allow you to highlight your
new knowledge and skills. It's official, and easily shareable.
{% endblocktrans %}
{% else %}
</p>
<p>
{% blocktrans trimmed %}
We hope you are enjoying <strong>{{ course_name }}</strong>.
Upgrade by {{ user_schedule_upgrade_deadline_time }} to get a shareable certificate!
Upgrade by <strong>{{ user_schedule_upgrade_deadline_time }}</strong>.
{% endblocktrans %}
{% endif %}
</p>
</p>
{% else %}
<p>
{% blocktrans trimmed %}
We hope you are enjoying learning with us so far in <strong>{{ course_name }}</strong>! A
verified certificate will allow you to highlight your new knowledge and skills. It's official,
and easily shareable.
{% endblocktrans %}
</p>
<p>
{% blocktrans trimmed %}
Upgrade by <strong>{{ user_schedule_upgrade_deadline_time }}</strong>.
{% endblocktrans %}
</p>
{% endif %}
<p>
<!-- email client support for style sheets is pretty spotty, so we have to inline all of these styles -->

View File

@@ -6,15 +6,20 @@ Dear {{ user_personal_address }},
{% if course_ids|length > 1 %}
{% blocktrans trimmed %}
We hope you are enjoying {{ course_name }}, and other courses on edX.org.
Upgrade by {{ user_schedule_upgrade_deadline_time }} to get a shareable certificate!
We hope you are enjoying learning with us so far in {{ course_name }}, and other courses on
{{ platform_name }}! A verified certificate will allow you to highlight your new knowledge and
skills. It's official, and easily shareable.
Upgrade by {{ user_schedule_upgrade_deadline_time }}.
{% endblocktrans %}
{% trans "Upgrade now at" %} <{{ dashboard_url }}>
{% else %}
{% blocktrans trimmed %}
We hope you are enjoying {{ course_name }}.
Upgrade by {{ user_schedule_upgrade_deadline_time }} to get a shareable certificate!
We hope you are enjoying learning with us so far in {{ course_name }}! A verified certificate
will allow you to highlight your new knowledge and skills. It's official, and easily shareable.
Upgrade by {{ user_schedule_upgrade_deadline_time }}.
{% endblocktrans %}
{% trans "Upgrade now at" %} <{{ course_url }}>

View File

@@ -1,7 +1,7 @@
{% load i18n %}
{% if course_ids|length > 1 %}
{% blocktrans %}Only two days left to upgrade on {{ platform_name }}!{% endblocktrans %}
{% blocktrans %}Upgrade to earn a verified certificate on {{ platform_name }}{% endblocktrans %}
{% else %}
{% blocktrans %}Only two days left to upgrade in {{course_name}} !{% endblocktrans %}
{% blocktrans %}Upgrade to earn a verified certificate in {{ course_name }}{% endblocktrans %}
{% endif %}