You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: course_discovery/apps/course_metadata/templates/course_metadata/email/go_live.html
+5-12Lines changed: 5 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -7,39 +7,32 @@
7
7
<p>
8
8
{% filter force_escape %}
9
9
{% blocktrans trimmed %}
10
-
Dear {{ recipient_name }},
10
+
Hi Course Team,
11
11
{% endblocktrans %}
12
12
{% endfilter %}
13
13
</p>
14
14
15
15
<p>
16
16
{% filter force_escape %}
17
17
{% blocktrans trimmed %}
18
-
The About page for the {{ course_run_number }} course run of {{ course_name }} has been published. No further action is necessary.
18
+
The About page for the {{ course_run_number }} course run of {{ course_name }} has been submitted for publishing. The new session will appear on the edX website following the next couple of deployments—typically within 24 to 48 business hours.
19
19
{% endblocktrans %}
20
20
{% endfilter %}
21
21
</p>
22
22
23
23
<p>
24
-
{% blocktrans trimmed asvar tmsg %}
25
-
{link_start}{preview_url}{link_middle}View this About page.{link_end}
The About page for the {{ course_run_number }} course run of {{ course_name }} has been published. No further action is necessary.
8
+
The About page for the {{ course_run_number }} course run of {{ course_name }} has been submitted for publishing. The new session will appear on the edX website following the next couple of deployments—typically within 24 to 48 business hours.
9
9
{% endblocktrans %}
10
10
11
11
{% blocktrans trimmed %}
12
-
View this About page. {{ preview_url }}
13
-
{% endblocktrans %}
14
-
15
-
{% blocktrans trimmed %}
16
-
Note: This email address is unable to receive replies. For questions or comments, please contact your Project Coordinator(s):
17
-
{% endblocktrans %}{% for contact_us_email in contact_us_emails %}{% if forloop.last %}{{ contact_us_email }}{% else %}{{ contact_us_email }},{% endif %}{% endfor %}
12
+
Note: This is a no-reply email. For any questions or comments, please contact your Project Coordinator at
13
+
{% endblocktrans %}{% for contact_us_email in contact_us_emails %}{% if forloop.last %} {{ contact_us_email }} {% else %} {{ contact_us_email }} ,{% endif %}{% endfor %}
Verify that send_email_for_go_live's happy path works as expected
246
246
"""
247
+
# pylint: disable=line-too-long
247
248
kwargs= {
248
249
'both_regexes': [
249
-
'The About page for the %s course run of %s has been published.'%
250
+
'The About page for the %s course run of %s has been submitted for publishing. The new session will appear on the edX website following the next couple of deployments—typically within 24 to 48 business hours'%
250
251
(self.run_num, self.course_run.title),
251
-
'No further action is necessary.',
252
252
],
253
253
'html_regexes': [
254
-
'<a href="%s">View this About page.</a>'%self.course_run.marketing_url,
255
-
r'For questions or comments, please contact your Project Coordinator\(s\):',
254
+
r'Note: This is a no-reply email. For any questions or comments, please contact your Project Coordinator at ',
0 commit comments