Add event name and day of event to mail footer (#1214)
This commit is contained in:
parent
40b93e3d8b
commit
3b241529b7
|
@ -5,4 +5,10 @@
|
||||||
{% block message %}{{ message|raw }}{% endblock %}
|
{% block message %}{{ message|raw }}{% endblock %}
|
||||||
|
|
||||||
{{ '-- ' }}
|
{{ '-- ' }}
|
||||||
{% 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 %}
|
{% 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 %}
|
||||||
|
|
Loading…
Reference in New Issue