Private
Public Access
1
0
Files
rowsandall/rowers/templates/subscription_create_notification.html
2018-12-21 15:17:12 +01:00

31 lines
541 B
HTML

{% extends "emailbase.html" %}
{% block body %}
<p>User <strong>{{ name }}</strong> has created a subscription.</p>
<p>
New plan: "{{ planname }}".
</p>
{% if 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 %}