iu-8.x-1.x-dev/templates/email/email--webform.html.twig
templates/email/email--webform.html.twig
{#
/**
* @file
* Symfony Mailer template for webform emails.
*
* Leverages the non-branded IU email template.
*/
#}
{% extends '@iu/email/email-template--nonbranded.html.twig' %}
{% block content %}
{%
set classes = [
'email-type-' ~ type|clean_class,
'email-sub-type-' ~ sub_type|clean_class,
]
%}
<div{{attributes.addClass(classes)}}>
{{ body }}
</div>
{% endblock %}
{% block compliance %}
This e-mail was automatically sent to <strong>{{ to_mail }}</strong>{% if from_name and from_name != site_name %} on behalf of {{ from_name }}{% endif %} using the <a href="{{ form_url }}" target="_blank" style="color:#006298;">{{ form_name }}</a> on the {{ site_name }} website.
{% endblock %}
{% block online_version %}{% endblock %}
