mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
22 lines
475 B
HTML
22 lines
475 B
HTML
{% extends "emails/base.html" %}
|
|
{% load hc_extras %}
|
|
|
|
{% block content %}
|
|
Hello,<br />
|
|
<p>
|
|
We could not deliver a Signal notification to <strong>{{ recipient|mask_phone }}</strong> due to
|
|
hitting a rate-limit on the Signal network, so we are sending it via email
|
|
instead:
|
|
</p>
|
|
|
|
<div style="background: #F2F4F6; padding: 20px;">
|
|
{{ message|safe|linebreaksbr }}
|
|
</div>
|
|
<br />
|
|
{% endblock %}
|
|
|
|
{% block content_more %}
|
|
Regards,<br />
|
|
The {% site_name %} Team
|
|
{% endblock %}
|