engelsystem/resources/views/emails/news-updated.twig

10 lines
304 B
Twig
Raw Normal View History

{% extends "emails/mail.twig" %}
{% block introduction %}
{{ __('notification.news.updated.introduction', [news.title, news.text, url('/news/' ~ news.id)]) }}
{% endblock %}
{% block message %}
{{ __('notification.news.updated.text', [news.title, news.text, url('/news/' ~ news.id)]) }}
{% endblock %}