Skip to content

Commit

Permalink
change email template support email (#177)
Browse files Browse the repository at this point in the history
CPCN-601
  • Loading branch information
petrjasek authored Jun 6, 2024
1 parent da59d5b commit 455324c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,3 +380,6 @@
PERSONAL_DASHBOARD_CARD_TYPE = "6-text-only"

AGENDA_PAGE_SIZE = 500

SUPPORT_EMAIL_EN = "[email protected]"
SUPPORT_EMAIL_FR = SUPPORT_EMAIL_EN
2 changes: 1 addition & 1 deletion server/theme/email_footer.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p>Regards,<br/>
The Canadian Press Team</p>
<p><a href="https://www.thecanadianpress.com/contact/">Contact us</a> at 1-800-268-8149 or <a href="mailto:[email protected]">[email protected]</a></p>
<p><a href="https://www.thecanadianpress.com/contact/">Contact us</a> at 1-800-268-8149 or <a href="mailto:{{ config.SUPPORT_EMAIL_EN }}">{{ config.SUPPORT_EMAIL_EN }}</a></p>
<p>Visit <a href="https://www.thecanadianpress.com/">https://www.thecanadianpress.com/</a> for more services from Canada's trusted news leader.</p>
2 changes: 1 addition & 1 deletion server/theme/email_layout.fr_ca.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<p>Cordialement,<br/>
L’équipe de La Presse Canadienne</p>

<p>Pour toutes questions, contactez <a href="mailto:[email protected]">[email protected]</a> du lundi au vendredi, entre 9h et 17h. En dehors de ces heures, écrivez à <a href="mailto:[email protected]">[email protected]</a> (assistance en anglais seulement).</p>
<p>Pour toutes questions, contactez <a href="mailto:[email protected]">[email protected]</a> du lundi au vendredi, entre 9h et 17h. En dehors de ces heures, écrivez à <a href="mailto:{{ config.SUPPORT_EMAIL_FR }}">{{ config.SUPPORT_EMAIL_FR }}</a> (assistance en anglais seulement).</p>
<p>Visitez notre <a href="https://www.thecanadianpress.com/?lang=fr">site internet</a> pour plus de services de La Presse Canadienne – respectée, pertinente, fiable.</p>
{% endblock %}
</body>
Expand Down
2 changes: 1 addition & 1 deletion server/theme/email_layout.fr_ca.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
Cordialement,
L’équipe de La Presse Canadienne

Pour toutes questions, contactez [email protected] du lundi au vendredi, entre 9h et 17h. En dehors de ces heures, écrivez à [email protected] (assistance en anglais seulement).
Pour toutes questions, contactez [email protected] du lundi au vendredi, entre 9h et 17h. En dehors de ces heures, écrivez à {{ config.SUPPORT_EMAIL_FR }} (assistance en anglais seulement).
Visitez notre https://www.thecanadianpress.com/?lang=fr pour plus de services de La Presse Canadienne – respectée, pertinente, fiable.
{% endblock %}
2 changes: 1 addition & 1 deletion server/theme/email_layout.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
Regards,
The Canadian Press Team

Contact us (https://www.thecanadianpress.com/contact/), 1-800-268-8149 or [email protected].
Contact us (https://www.thecanadianpress.com/contact/), 1-800-268-8149 or {{ config.SUPPORT_EMAIL_EN }}.
Visit https://www.thecanadianpress.com/for more services from Canada's trusted news leader.
{% endblock %}

0 comments on commit 455324c

Please sign in to comment.