24 lines
712 B
HTML
24 lines
712 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
|
|
|
<p>
|
|
Your Pro account on rowsandall.com expired on {{ expireddate }}. It
|
|
has now been automatically reset to Basic.
|
|
Let me know if you have any questions. If you want to continue using Pro membership,
|
|
just sign up again through the site and I will change your membership back to Pro.
|
|
</p>
|
|
|
|
<p>
|
|
If you do not want to continue the Pro membership, I'd be interested to know why you
|
|
decided to not continue your Pro account. Did it not fulfill your expectations?
|
|
This information is valuable to improve the site for all users. Thank you!
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|
|
|