@ -0,0 +1,22 @@ | |||||
{% extends "emails/base.html" %} | |||||
{% load hc_extras %} | |||||
{% block content %} | |||||
Hello,<br /> | |||||
<p> | |||||
We could not deliver a phone call notification because your {% site_name %} | |||||
account has reached its monthly phone call limit of | |||||
<strong>{{ limit }} calls per month</strong>. The limit resets at the start of | |||||
each month. | |||||
</p> | |||||
{% if url %} | |||||
<p>You can increase the monthly phone call limit by upgrading your billing plan. <a href="{{ url }}">See Pricing</a>.</p> | |||||
{% endif %} | |||||
{% endblock %} | |||||
{% block content_more %} | |||||
Regards,<br /> | |||||
The {% site_name %} Team | |||||
{% endblock %} |
@ -0,0 +1,9 @@ | |||||
{% load hc_extras %}Hello, | |||||
We could not deliver a phone call notification because your {% site_name %} account has reached its monthly phone call limit of {{ limit }} calls per month. The limit resets at the start of each month. | |||||
{% if url %}You can increase the monthly phone call limit by upgrading your billing plan. | |||||
{% endif %} | |||||
-- | |||||
Regards, | |||||
The {% site_name %} Team |
@ -0,0 +1 @@ | |||||
Monthly Phone Call Limit Reached |
@ -1 +1 @@ | |||||
Monthly {% if transport == "phone call" %}Phone Call{% else %}{{ transport }}{% endif %} Limit Reached | |||||
Monthly {{ transport }} Limit Reached |