18 lines
296 B
HTML
18 lines
296 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>User <strong>{{ name }}</strong> made a payment.</p>
|
|
|
|
<p>
|
|
Plan: {{ planname }}, starting on {{ startdate }} and ending on {{ enddate }}
|
|
</p>
|
|
|
|
<p>
|
|
Price: €{{ amount }}.
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|