22 lines
296 B
HTML
22 lines
296 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>
|
|
User {{ name }} tried to cancel his subscription with id "{{ id }}" on {{ siteurl }} but failed.
|
|
</p>
|
|
|
|
<p>
|
|
User name: {{ username }}
|
|
</p>
|
|
|
|
<p>
|
|
User email: {{ email }}
|
|
</p>
|
|
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|
|
|