healthchecks/templates/emails/alert-body-html.html

18 lines
458 B
HTML

{% 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" %}
<p>Thanks,<br>The Healthchecks<span>.</span>io</a> Team</p>
{% endblock %}