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.
 
 
 
 
 

24 lines
643 B

{% extends "emails/base.html" %}
{% block content %}
<h1>Hello,</h1>
<p>
This is a notification sent by <a href="https://healthchecks.io">healthchecks.io</a>.
<br />
The check <strong>{{ check.name_then_code }}</strong>
has gone <strong>{{ check.status|upper }}</strong>.
</p>
<p>Here is a summary of all your checks:</p>
{% include "emails/summary-html.html" %}
{% if show_upgrade_note %}
<p><strong>P.S.</strong>
Find this service useful? Support it by upgrading to
a <a href="https://healthchecks.io/pricing/">premium account</a>!
</p>
{% endif %}
<p>Thanks,<br>The Healthchecks<span>.</span>io Team</p>
{% endblock %}