generated from superdesk/newsroom-app
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change email template support email (#177)
CPCN-601
- Loading branch information
Showing
5 changed files
with
7 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
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 |
---|---|---|
@@ -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> |
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 |
---|---|---|
|
@@ -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> | ||
|
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 |
---|---|---|
|
@@ -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 %} |
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 |
---|---|---|
|
@@ -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 %} |