{% extends "email/base.html" %} {% block title %}Cancellation scheduled{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="warning" hero_title="Cancellation scheduled" hero_subtitle="Access continues until the date below." hero_icon="cancel.png" hero_accent_icon="sad.png" %} {% endblock %} {% block content %}

Hi {{ admin_name }},

{% if customer_type == "engineer" %} Your {{ plan_name }} subscription will end on {{ access_until_date }}. You keep full access until then. {% else %} The {{ plan_name }} subscription for {{ company_name }} will end on {{ access_until_date }}. Access continues until that 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="ACCESS UNTIL" pill_value=access_until_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="Ending" pill_variant="warning" pill_border="none" pill_radius="bottom" %}
{% include "email/partials/_cta.html" with cta_url=billing_url cta_label="Manage subscription" %}

To keep your plan, resume the subscription from billing settings before {{ access_until_date }}.

{% endblock %}