{% 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 %}
|
INCLUDED
{% for feature in plan_features %}{% if not forloop.first %} · {% endif %}{{ feature }}{% endfor %}{% if customer_type != "engineer" %} · {{ assessment_limit }} assessments / month · {{ seat_limit }} seats{% endif %} |
Manage billing anytime from {% if customer_type == "engineer" %}Subscriptions{% else %}Billing settings{% endif %}.
{% endif %} {% endblock %}