mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-02-22 12:08:35 +00:00
18 lines
571 B
HTML
18 lines
571 B
HTML
{% extends "emails/base.html" %}
|
|
{% load hc_extras %}
|
|
|
|
{% block content %}
|
|
Hello,<br />
|
|
<br />
|
|
The {% site_name %} account registered to <strong>{{ owner_email }}</strong>
|
|
is scheduled for deletion on <strong>{{ deletion_scheduled_date.date }}</strong>.<br />
|
|
<br />
|
|
Account details:<br />
|
|
Owner: <strong>{{ owner_email }}</strong><br />
|
|
Number of checks in the account: <strong>{{ num_checks }}</strong><br />
|
|
<br />
|
|
To prevent deletion, please contact us at {{ support_email}} as soon as possible.<br />
|
|
<br />
|
|
Sincerely,<br />
|
|
The {% site_name %} Team
|
|
{% endblock %}
|