jcloude/press/templates/emails/payment_failed.html
2025-12-23 20:42:58 +08:00

47 lines
1.3 KiB
HTML

{% import "templates/emails/macros.html" as utils %}
{% extends "templates/emails/base.html" %}
{% block content %}
<td class="text-base leading-6 text-gray-900">
<div class="p-8 bg-white">
<p class="mb-4 font-bold">
{%- if subject -%}
{{ subject }}
{%- else -%}
Payment of {{ amount }} for Jingrow Cloud was unsuccessful.
{%- endif -%}
</p>
{%- if card_not_added -%}
<p class="mb-6">
You haven't added a card for your Jingrow Cloud subscription. Your sites will be suspended until you
update your card details in your account.
</p>
{{ utils.button('Update Billing Settings', account_update_link) }}
{%- else -%}
<p class="mb-6">
We attempted to charge your card ending in <strong>{{ last_4 }}</strong> for your Jingrow Cloud subscription,
but were unsuccessful. Please update your card details in your
{{ utils.link('Billing Settings', account_update_link) }}
or pay manually by clicking the following link.
</p>
{{ utils.button('Pay Invoice Now', payment_link) }}
{%- endif -%}
{%- if sites -%}
{{ utils.separator() }}
<p class="mt-0 mb-2">Following sites were suspended:</p>
<ul class="list-disc">
{%- for site in sites -%}
<li class="text-sm font-medium">{{ site }}</li>
{%- endfor -%}
</ul>
{%- endif -%}
{{ utils.separator() }}
{{ utils.signature() }}
</div>
</td>
{% endblock %}