{% extends "email/base.html" %} {% block title %}Subscription ended{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="neutral" hero_title="Subscription ended" hero_subtitle="Your account is on the Free plan." hero_icon="card.png" %} {% endblock %} {% block content %}

Hi {{ admin_name }},

{% if reason == "admin_revoked" %} Your complimentary {{ plan_name }} access has ended{% if reason_label %} ({{ reason_label }}){% endif %}. {% elif reason == "payment_failed" %} Your {{ plan_name }} subscription ended because we could not collect payment. {% else %} Your {{ plan_name }} subscription ended at the end of your billing period. {% endif %} Your account is on the Free plan. Your data is unchanged.

{% include "email/partials/_detail_row.html" with pill_label="PLAN" pill_value=plan_name pill_variant="gray" pill_radius="top" %} {% include "email/partials/_detail_row.html" with pill_label="STATUS" pill_value="Ended" pill_variant="gray" pill_border="none" pill_radius="bottom" %}
{% if reason == "admin_revoked" %} {% include "email/partials/_cta.html" with cta_url=dashboard_url cta_label="Go to dashboard" %} {% else %} {% include "email/partials/_cta.html" with cta_url=billing_url cta_label="View billing" %} {% endif %} {% endblock %}