{% extends "email/base.html" %} {% block title %}Plan change confirmation{% endblock %} {% block hero %} {% if immediate %} {% include "email/partials/_hero.html" with hero_variant="primary" hero_title="Plan updated" hero_subtitle="Your new plan is active." hero_icon="layers.png" %} {% else %} {% include "email/partials/_hero.html" with hero_variant="primary" hero_title="Plan change scheduled" hero_subtitle="Your new plan starts on the date below." hero_icon="layers.png" %} {% endif %} {% endblock %} {% block content %}
Hi {{ admin_name }},
{% if immediate %} {% if customer_type == "engineer" %} You are on the {{ to_plan_name }} plan. Billing reflects the new plan. {% else %} {{ company_name }} is on the {{ to_plan_name }} plan. Billing reflects the new plan. {% endif %} {% else %} {% if customer_type == "engineer" %} Your plan will change from {{ from_plan_name }} to {{ to_plan_name }} on {{ effective_date }}. {% else %} The plan for {{ company_name }} will change from {{ from_plan_name }} to {{ to_plan_name }} on {{ effective_date }}. {% endif %} {% endif %}