{% extends "email/base.html" %} {% block title %}Subscription resumed{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="success" hero_title="Subscription resumed" hero_subtitle="Your plan is active again." hero_icon="check-circle.png" hero_accent_icon="smile.png" %} {% endblock %} {% block content %}

Hi {{ admin_name }},

{% if customer_type == "engineer" %} Your {{ plan_name }} subscription has resumed. The next renewal date is {{ next_renewal_date }}. {% else %} The {{ plan_name }} subscription for {{ company_name }} has resumed. The next renewal date is {{ next_renewal_date }}. {% endif %}

{% 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="NEXT RENEWAL" pill_value=next_renewal_date pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="BILLING CYCLE" pill_value=billing_cycle pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="AMOUNT" pill_value=amount pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="STATUS" pill_value="Active" pill_variant="success" pill_border="none" pill_radius="bottom" %}
{% include "email/partials/_cta.html" with cta_url=billing_url cta_label="View subscription" %} {% endblock %}