15 lines
452 B
Twig
15 lines
452 B
Twig
{% block title %}{{ __('email.greeting', [username]) }}{% endblock %}
|
|
|
|
{% block introduction %}{{ __('email.introduction', [config('app_name')]) }}{% endblock %}
|
|
|
|
{% block message %}{{ message|raw }}{% endblock %}
|
|
|
|
{{ '-- ' }}
|
|
{% block footer %}
|
|
{{config('name')}}
|
|
{%- if config('enable_show_day_of_event') and day_of_event is defined %}
|
|
, {{ __('event.day', [day_of_event]) }}
|
|
{% endif %}
|
|
{{ __('email.footer', [config('app_name')]) }}
|
|
{% endblock %}
|