-
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
server: Send customer email on subscription.revoked
- Loading branch information
1 parent
2b1ea58
commit 3e0174e
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block body %} | ||
<h1>Your subscription has now ended</h1> | ||
<p>Thank you being a subscriber of <strong>{{ product.name }}</strong>.</p> | ||
<p>We hope to see you again in the future - you're always welcome back.</p> | ||
|
||
<table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation"> | ||
<tr> | ||
<td align="center"> | ||
<table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation"> | ||
<tr> | ||
<td align="center"> | ||
<a href="{{ url | safe }}" class="f-fallback button">View subscription</a> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
<!-- Sub copy --> | ||
<table class="body-sub" role="presentation"> | ||
<tr> | ||
<td> | ||
<p class="f-fallback sub">If you're having trouble with the button above, copy and paste the URL below into your web browser:</p> | ||
<p class="f-fallback sub"><a href="{{ url | safe }}">{{ url | safe }}</a></p> | ||
</td> | ||
</tr> | ||
</table> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters