jcloude/press/templates/emails/transfer_team_confirmation.html
2025-12-23 19:17:16 +08:00

34 lines
1.3 KiB
HTML

{% extends "templates/emails/base.html" %}
{% import "templates/emails/macros.html" as utils %}
{% block content %}
<td class="text-base leading-6 text-gray-900">
<div class="p-8 bg-white">
<p class="mb-4 font-bold">
{{ type | capitalize }} Transfer Confirmation
</p>
<p class="mb-6">
The team, {{ old_team }} have requested to transfer the {{ type }} <b>{{ name }}</b> to your team
{{new_team}}. Click on the button below to give consent for this transfer. Please note that on giving
consent, the following changes will happen:
<br>
<br>
1. The {{ type }} <b>{{ name }}</b> under {{ old_team }}, will be transferred to your team
<br>
{% if type == 'site' %}
2. You will be billed for this site under the team {{ new_team }}
<br>
{% endif %}
<br>
If you are not aware of this request, ignore the confirmation email.
<br>
<!-- Note: The temporary link will expire in {{ minutes }} minutes. -->
</p>
{{ utils.button('Accept Transfer', transfer_url, true) }}
{{ utils.separator() }}
{{ utils.signature() }}
</div>
</td>
{% endblock %}