You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
561 B

  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. Hello,<br />
  5. <p>
  6. We could not deliver a phone call notification because your {% site_name %}
  7. account has reached its monthly phone call limit of
  8. <strong>{{ limit }} calls per month</strong>. The limit resets at the start of
  9. each month.
  10. </p>
  11. {% if url %}
  12. <p>You can increase the monthly phone call limit by upgrading your billing plan. <a href="{{ url }}">See Pricing</a>.</p>
  13. {% endif %}
  14. {% endblock %}
  15. {% block content_more %}
  16. Regards,<br />
  17. The {% site_name %} Team
  18. {% endblock %}