-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide clean versions of text emails
- Loading branch information
1 parent
44122d0
commit 9d07e40
Showing
9 changed files
with
62 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{# | ||
# This file is part of Bileto. | ||
# Copyright 2022-2024 Probesys | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{{ content | striptags }} | ||
|
||
-- | ||
{{ 'emails.message.reply_txt' | trans({ url: url('ticket', { uid: ticket.uid }) }) }} | ||
{{ 'emails.message.receiving' | trans({ ticketType: ticket.type }) }} |
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,11 @@ | ||
{# | ||
# This file is part of Bileto. | ||
# Copyright 2022-2024 Probesys | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{% extends 'emails/transactional.txt.twig' %} | ||
|
||
{% block body %} | ||
{{ 'emails.receipt.received' | trans }} | ||
{% 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{# | ||
# This file is part of Bileto. | ||
# Copyright 2022-2024 Probesys | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{% extends 'emails/transactional.txt.twig' %} | ||
|
||
{% block body %} | ||
{{ 'emails.reset_password.intro' | trans }} | ||
|
||
{{ 'emails.reset_password.reset' | trans }} {{ url('edit password', { token: token.value }) }} | ||
|
||
{{ 'emails.reset_password.expiration' | trans }} | ||
{% 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{# | ||
# This file is part of Bileto. | ||
# Copyright 2022-2024 Probesys | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{{ 'emails.politeness.hello' | trans }} | ||
|
||
{% block body %} | ||
{% endblock %} | ||
|
||
{{ 'emails.politeness.regards' | trans }} | ||
{{ 'emails.politeness.support_team' | trans }} | ||
|
||
{% block footer %} | ||
-- | ||
{{ 'emails.transactional.sent_txt' | trans({ url: url('home') }) | raw }} | ||
{% 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
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