28 lines
861 B
HTML
28 lines
861 B
HTML
{% extends "templates/emails/base.html" %} {% block content %}
|
|
<td class="text-base leading-6 text-gray-900">
|
|
<div class="p-8 bg-white">
|
|
<div class="from-markdown">
|
|
Hey there,
|
|
<p>
|
|
Monitoring & alerting mechanism has been disabled for your site
|
|
<strong>{{site}}</strong>.
|
|
Reason for disabling monitoring:
|
|
</p>
|
|
<blockquote>{{reason}}</blockquote>
|
|
<p>
|
|
Please re-enable monitoring from dashboard to receive alerts.<br>
|
|
Check the documentation
|
|
<a
|
|
href="https://docs.framework.jingrow.com/cloud/sites/monitoring#monitoring-disabled"
|
|
target="_blank"
|
|
>here</a
|
|
> for the guide. If you need any assistance, please raise a ticket on
|
|
<a href="https://jcloud.jingrow.com/support" target="_blank"
|
|
>jcloud.jingrow.com/support</a
|
|
>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
{% endblock %}
|