payemnt billing and credits refactoring
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
{% extends "emails/base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Invoice Cancelled</h2>
|
||||
<p>Hi {{ account_name }},</p>
|
||||
<p>Your credit invoice <strong>#{{ invoice_number }}</strong> was cancelled.</p>
|
||||
<p>
|
||||
You can create a new credit purchase anytime from your billing page:
|
||||
<a href="{{ invoice_url }}">Billing</a>
|
||||
</p>
|
||||
<p>If you have any questions, contact support at {{ support_email }}.</p>
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,12 @@
|
||||
{% extends "emails/base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Invoice Expired</h2>
|
||||
<p>Hi {{ account_name }},</p>
|
||||
<p>Your credit invoice <strong>#{{ invoice_number }}</strong> has expired and was voided.</p>
|
||||
<p>
|
||||
You can create a new credit purchase anytime from your billing page:
|
||||
<a href="{{ invoice_url }}">Billing</a>
|
||||
</p>
|
||||
<p>If you have any questions, contact support at {{ support_email }}.</p>
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,16 @@
|
||||
{% extends "emails/base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Invoice Expiring Soon</h2>
|
||||
<p>Hi {{ account_name }},</p>
|
||||
<p>Your credit invoice <strong>#{{ invoice_number }}</strong> will expire soon.</p>
|
||||
<ul>
|
||||
<li><strong>Amount:</strong> {{ currency }} {{ total_amount }}</li>
|
||||
<li><strong>Expires at:</strong> {{ expires_at }}</li>
|
||||
</ul>
|
||||
<p>
|
||||
Please complete payment before it expires:
|
||||
<a href="{{ invoice_url }}">View Invoice</a>
|
||||
</p>
|
||||
<p>If you have any questions, contact support at {{ support_email }}.</p>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user