engelsystem/resources/views/emails/mail.twig

7 lines
402 B
Twig
Raw Normal View History

2019-10-08 16:17:06 +02:00
{% block title %}{{ __('Hi %s,', [username]) }}{% endblock %}
2019-10-08 16:17:06 +02:00
{% block introduction %}{{ __('here is a message for you from the %s:', [config('app_name')]) }}{% endblock %}
{% block message %}{{ message|raw }}{% endblock %}
2019-10-08 16:17:06 +02:00
{% 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 %}