27 lines
511 B
HTML
27 lines
511 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>User <strong>{{ name }}</strong> has downgraded his subscription.</p>
|
|
|
|
<p>
|
|
New plan: "{{ planname }}".
|
|
</p>
|
|
|
|
{% if recurring=='recurring' %}
|
|
<p>
|
|
The subscription cost is €{{ price }} per year.
|
|
The next charge is due on {{ end_of_billing_period }}.
|
|
</p>
|
|
{% else %}
|
|
<p>
|
|
The subscription cost is €{{ price }}. The subscription ends on {{ end_of_billing_period }}
|
|
</p>
|
|
{% endif %}
|
|
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|
|
|