{% extends "email/base.html" %} {% block title %}Your Praxicraft subscription is active{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="success" hero_title="Subscription active" hero_subtitle="Your plan is ready to use." hero_icon="check-circle.png" hero_accent_icon="confetti.png" %} {% endblock %} {% block content %}

Hi {{ admin_name }},

{% if customer_type == "engineer" %} {% if admin_comp %} Complimentary {{ plan_name }} access is now on your account. {% else %} Your {{ plan_name }} subscription is active. {% endif %} {% else %} The {{ plan_name }} plan for {{ company_name }} is active. {% 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="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" %} {% if admin_comp %} {% if next_renewal_date %} {% include "email/partials/_detail_row.html" with pill_label="ACCESS" pill_value=next_renewal_date pill_variant="gray" %} {% endif %} {% else %} {% if next_renewal_date %} {% include "email/partials/_detail_row.html" with pill_label="NEXT RENEWAL" pill_value=next_renewal_date pill_variant="gray" %} {% endif %} {% if payment_gateway %} {% include "email/partials/_detail_row.html" with pill_label="PAYMENT METHOD" pill_value=payment_gateway pill_variant="gray" %} {% endif %} {% endif %} {% include "email/partials/_detail_row.html" with pill_label="STATUS" pill_value="Active" pill_variant="success" pill_border="none" pill_radius="bottom" %}
{% if plan_features %}
{% elif customer_type != "engineer" %} {% include "email/partials/_detail_row.html" with pill_label="INCLUDED" pill_note=assessment_limit|stringformat:"s"|add:" assessments / month · "|add:seat_limit|stringformat:"s"|add:" team seats" pill_variant="primary" pill_radius="all" pill_border="none" %}
{% endif %} {% include "email/partials/_cta.html" with cta_url=dashboard_url cta_label="Go to dashboard" %} {% if not admin_comp %} {% if receipt_url %}

View your payment receipt.

{% endif %}

Manage billing anytime from {% if customer_type == "engineer" %}Subscriptions{% else %}Billing settings{% endif %}.

{% endif %} {% endblock %}