{% extends 'emails/layout/base.html.twig' %} {% block body %}

{{ 'email.greeting'|trans }}{% if firstname %} {{ firstname }}{% endif %},

{{ 'email.downloadNotify.intro'|trans({ '%recipient%': recipientEmail }) }}

{% if fileName %}

{{ 'email.downloadNotify.fileLine'|trans({'%file%': fileName}) }}

{% endif %} {% if link %} {% include 'emails/components/_button.html.twig' with { href: link, label: 'email.downloadNotify.cta'|trans } only %} {% include 'emails/components/_alt_link.html.twig' with { url: link } %} {% endif %} {% include 'emails/components/_security.html.twig' %} {% endblock %}