Files
lulandia.pl/mails/themes/classic/core/import.html.twig
Jacek Pyziak c20f2b4989 Add referral program invitation and voucher email templates
- Created `referralprogram-invitation.html.twig` for sending invitations to friends to join the referral program.
- Created `referralprogram-voucher.html.twig` for notifying users about their voucher after referring a friend.
- Both templates include responsive design and utilize the modern email layout.
- Added translation support for various text elements within the templates.
2025-06-01 01:51:01 +02:00

42 lines
1.2 KiB
Twig

{% extends '@MailThemes/classic/components/layout.html.twig' %}
{% block content %}
<tr>
<td align="center" class="titleblock">
<font size="2" face="{{ languageDefaultFont }}Open-sans, sans-serif" color="#555454">
<span class="title">{{ 'Hi {firstname} {lastname},'|trans({}, 'Emails.Body', locale) }}</span>
</font>
</td>
</tr>
<tr>
<td class="space_footer">&nbsp;</td>
</tr>
<tr>
<td class="box" style="border:1px solid #D6D4D4;">
<table class="table">
<tr>
<td width="10">&nbsp;</td>
<td>
<font size="2" face="{{ languageDefaultFont }}Open-sans, sans-serif" color="#555454">
{% if templateType == 'html' %}
<p style="border-bottom:1px solid #D6D4D4;">
{{ 'Import complete'|trans({}, 'Emails.Body', locale)|raw }}
</p>
{% endif %}
<span>
{{ 'The file {filename} has been successfully imported to your shop.'|trans({}, 'Emails.Body', locale) }}
</span>
</font>
</td>
<td width="10">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="space_footer">&nbsp;</td>
</tr>
{% endblock %}