summaryrefslogtreecommitdiff
path: root/resources/views/emails
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-10-05 15:35:14 +0200
committermsquare <msquare@notrademark.de>2018-10-30 22:50:22 +0100
commit90e1a949623ead173c0952f802d7b5c5487251b1 (patch)
tree544d29dde573cb135b514d0a84c2d95e9207392c /resources/views/emails
parent0aa5f079258afd5276917c1aff565ec1c6411821 (diff)
Make application name configurable
* Added app_name configuration option * Extended `EngelsystemMailer` to prepend the application name to all mails Closes #426
Diffstat (limited to 'resources/views/emails')
-rw-r--r--resources/views/emails/mail.twig4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/views/emails/mail.twig b/resources/views/emails/mail.twig
index f5ac5860..c99fc104 100644
--- a/resources/views/emails/mail.twig
+++ b/resources/views/emails/mail.twig
@@ -1,6 +1,6 @@
{{ __('Hi %s,', [user]) }}
-{{ __('here is a message for you from the engelsystem:') }}
+{{ __('here is a message for you from the %s:', [config('app_name')]) }}
{{ message|raw }}
-{{ __('This email is autogenerated and has not been signed. You got this email because you are registered in the engelsystem.') }}
+{{ __('This email is autogenerated and has not been signed. You got this email because you are registered in the %s.', [config('app_name')]) }}