20 lines
393 B
HTML
20 lines
393 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ name }}</strong>,</p>
|
|
|
|
<p>
|
|
Thank you. We have received the payment of € {{ amount }} for Rowsandall related services.
|
|
</p>
|
|
|
|
<p>
|
|
Please contact our customer service by replying to this email if you have any further
|
|
questions regarding the payment.
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|
|
|