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.
This commit is contained in:
2025-06-01 01:51:01 +02:00
parent fe92238a41
commit c20f2b4989
274 changed files with 42732 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
{% 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="linkbelow">
{message}
</td>
</tr>
{% endblock %}