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
560 B

  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. Hello,<br />
  5. <p>
  6. We could not deliver a {{ transport }} notification because your {% site_name %}
  7. account has reached its monthly sending limit of
  8. <strong>{{ limit }} sends 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 sending 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 %}