Private
Public Access
1
0

confirmation emails to buyers

This commit is contained in:
Sander Roosendaal
2018-12-20 15:29:21 +01:00
parent 9272704f36
commit a9f11f4f76
10 changed files with 364 additions and 9 deletions

View File

@@ -0,0 +1,60 @@
{% extends "emailbase.html" %}
{% block body %}
<p>Dear <strong>{{ name }}</strong>,</p>
<p>
Thank you. We have received the payment of &euro; {{ amount }} for your new
subscription to the Rowsandall paid plan "{{ planname }}".
</p>
{% if recurring %}
<p>
Your next charge is due on {{ end_of_billing_period }}. We will charge your {{ paymentmethod }}
on that date.
</p>
<p>
The subscription will keep running until you change or stop it. At any point in time you
can change the automatically renewing subscription to a "one year only" subscription through
<a href="{{ siteurl}}/rowers/upgrade/">the upgrade page</a>. On this page, you can also
upgrade your subscription.
</p>
{% else %}
<p>
This one year subscription will automatically end on {{ end_of_billing_period }}. You can
renew your subscription after that.
</p>
<p>
At any point in time, you can change your subscription to an automatically renewing subscription.
You can do this on <a href="{{ siteurl}}/rowers/upgrade/">the upgrade page</a>.
Here, you can also upgrade your subscription.
</p>
{% endif %}
<p>
Upgrades in the middle of a billing cycle will be charged pro-rated. For the current billing
cycle, you will only be charged for the price difference for the remaining fraction of the
billing cycle. If you downgrade to a lower cost subscription, the pro-rated difference will be
used as a credit, lowering the amount charged on the next billing cycle.
</p>
<p>
You can stop the subscription through
<a href="{{ siteurl }}/rowers/me/cancelsubscriptions">the subscription management page</a>. The
subscription will be stopped immediately without a refund.
</p>
<p>
Please contact our customer service by replying to this email if you have any further
questions regarding your subscription.
</p>
<p>
Best Regards, the Rowsandall Team
</p>
{% endblock %}