Private
Public Access
1
0
Files
rowsandall/rowers/templates/subscription_update_notification.html
Sander Roosendaal 117836a102 errors fixed
2018-12-31 16:45:46 +01:00

31 lines
557 B
HTML

{% extends "emailbase.html" %}
{% block body %}
<p>User <strong>{{ name }}</strong> has updated his subscription.</p>
<p>
New plan: "{{ planname }}".
</p>
{% if recurring=='recurring' %}
<p>
The subscription cost is &euro;{{ price }} per year.
The next charge is due on {{ end_of_billing_period }}.
</p>
{% else %}
<p>
The subscription cost is &euro;{{ price }}. The subscription ends on {{ end_of_billing_period }}
</p>
{% endif %}
<p>
Amount charged: &euro;{{ amount }}
</p>
<p>
Best Regards, the Rowsandall Team
</p>
{% endblock %}