{% import "templates/emails/macros.html" as utils %} {% extends "templates/emails/base.html" %} {% block content %}

{%- if subject -%} {{ subject }} {%- else -%} Payment of {{ amount }} for Jingrow Cloud was unsuccessful. {%- endif -%}

{%- if card_not_added -%}

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.

{{ utils.button('Update Billing Settings', account_update_link) }} {%- else -%}

We attempted to charge your card ending in {{ last_4 }} 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.

{{ utils.button('Pay Invoice Now', payment_link) }} {%- endif -%} {%- if sites -%} {{ utils.separator() }}

Following sites were suspended:

{%- endif -%} {{ utils.separator() }} {{ utils.signature() }}
{% endblock %}