15 lines
561 B
Twig
15 lines
561 B
Twig
{% block title %}{{ __('Hi %s,', [username]) }}{% endblock %}
|
|
|
|
{% block introduction %}{{ __('here is a message for you from the %s:', [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 %}
|
|
{{ __('This email is autogenerated and has not been signed. You got this email because you are registered in the %s.', [config('app_name')]) }}
|
|
{% endblock %}
|