{% extends "email/base.html" %} {% block title %}Payment failed{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="error" hero_title="Payment failed" hero_subtitle="Your payment method needs an update." hero_icon="cancel.png" hero_accent_icon="sad.png" %} {% endblock %} {% block content %}
Hi {{ admin_name }},
{% if customer_type == "engineer" %} We could not process the {{ billing_cycle }} payment of {{ amount }} for your {{ plan_name }} plan. {% else %} We could not process the {{ billing_cycle }} payment of {{ amount }} for {{ company_name }}’s {{ plan_name }} plan. {% endif %}
After {{ max_attempts }} unsuccessful payment attempts, your subscription was cancelled. Your account is on the Free plan. Your data is unchanged. You can subscribe again at any time.
{% include "email/partials/_cta.html" with cta_url=billing_url cta_label="View billing" %} {% else %}We will retry the charge automatically. Open billing, then choose Update payment method if your card or bank details have changed.
{% include "email/partials/_cta.html" with cta_url=billing_url cta_label="Update payment method" %} {% endif %} {% endblock %}