2019-10-08 16:17:06 +02:00
|
|
|
{% block title %}{{ __('Hi %s,', [username]) }}{% endblock %}
|
2018-09-05 13:40:03 +02:00
|
|
|
|
2019-10-08 16:17:06 +02:00
|
|
|
{% block introduction %}{{ __('here is a message for you from the %s:', [config('app_name')]) }}{% endblock %}
|
2020-12-28 16:04:05 +01:00
|
|
|
|
2019-10-08 16:17:06 +02:00
|
|
|
{% block message %}{{ message|raw }}{% endblock %}
|
2018-09-05 13:40:03 +02:00
|
|
|
|
2021-12-15 19:55:52 +01:00
|
|
|
{{ '-- ' }}
|
2023-09-24 15:10:10 +02:00
|
|
|
{% block footer %}
|
|
|
|
{{config('name')}}
|
|
|
|
{%- if config('enable_show_day_of_event') and day_of_event is defined %}
|
|
|
|
, {{ __('event.day', [day_of_event]) }}
|
|
|
|
{% endif %}
|
|
|
|
{{ __('This email is autogenerated and has not been signed. You got this email because you are registered in the %s.', [config('app_name')]) }}
|
|
|
|
{% endblock %}
|