21 lines
604 B
HTML
21 lines
604 B
HTML
{% import "templates/emails/macros.html" as utils %} {% extends
|
|
"templates/emails/base.html" %} {% block content %}
|
|
|
|
<td class="text-base leading-6 text-gray-900">
|
|
<div class="p-8 bg-white from-markdown">
|
|
<p class="mb-4 font-bold">
|
|
Snapshot <strong>({{ snapshot }})</strong> recovery has been completed
|
|
</p>
|
|
<p>
|
|
You can visit Jingrow Cloud dashboard and download the site backups.<br /><br />
|
|
|
|
<strong>Need Help ?</strong><br />
|
|
Please raise a ticket on support.framework.jingrow.com for queries.
|
|
</p>
|
|
|
|
{{ utils.separator() }} {{ utils.signature() }}
|
|
</div>
|
|
</td>
|
|
|
|
{% endblock %}
|