Files
lulandia.pl/mails/themes/classic/core/reply_msg.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

30 lines
755 B
Twig

{% extends '@MailThemes/classic/components/layout.html.twig' %}
{% block content %}
<tr>
<td align="center" class="titleblock">
<span class="title">{{ 'Hi {firstname} {lastname},'|trans({}, 'Emails.Body', locale) }}</span>
</td>
</tr>
<tr>
<td class="space_footer">&nbsp;</td>
</tr>
<tr>
<td class="linkbelow">
<span>{reply}</span>
</td>
</tr>
<tr>
<td class="space_footer">&nbsp;</td>
</tr>
<tr>
<td class="linkbelow">
<span>
{{ 'Please do not reply directly to this email, we will not receive it.'|trans({}, 'Emails.Body', locale)|raw }}
<br/>
{{ 'In order to reply, please use the following link: <a href="{link}">{link}</a>'|trans({}, 'Emails.Body', locale)|raw }}
</span>
</td>
</tr>
{% endblock %}