summaryrefslogtreecommitdiff
path: root/resources/views/emails/mail.twig
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-10-08 16:17:06 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2019-10-08 16:17:06 +0200
commitdd0366296893a0e8da8ae0365387dd4823d53451 (patch)
treea095514373384ebdaeba7b5809cbcb9bbcfd19d8 /resources/views/emails/mail.twig
parent8f8130634e40f6a24295b7bab449a43ed7c5aa80 (diff)
Rebuild password reset
Diffstat (limited to 'resources/views/emails/mail.twig')
-rw-r--r--resources/views/emails/mail.twig8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/emails/mail.twig b/resources/views/emails/mail.twig
index ec70f594..e0ad7b64 100644
--- a/resources/views/emails/mail.twig
+++ b/resources/views/emails/mail.twig
@@ -1,6 +1,6 @@
-{{ __('Hi %s,', [username]) }}
+{% block title %}{{ __('Hi %s,', [username]) }}{% endblock %}
-{{ __('here is a message for you from the %s:', [config('app_name')]) }}
-{{ message|raw }}
+{% block introduction %}{{ __('here is a message for you from the %s:', [config('app_name')]) }}{% endblock %}
+{% block message %}{{ message|raw }}{% endblock %}
-{{ __('This email is autogenerated and has not been signed. You got this email because you are registered in the %s.', [config('app_name')]) }}
+{% block footer %}{{ __('This email is autogenerated and has not been signed. You got this email because you are registered in the %s.', [config('app_name')]) }}{% endblock %}