31 lines
553 B
HTML
31 lines
553 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>User <strong>{{ name }}</strong> has created a 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>
|
|
Amount charged: €{{ amount }}
|
|
</p>
|
|
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|
|
|