21 lines
338 B
HTML
21 lines
338 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
|
|
|
<p>
|
|
Here is the report for your alert on <a href="{{ siteurl }}">rowsandall.com</a>.
|
|
</p>
|
|
|
|
{% for key, value in report.items() %}
|
|
<p>
|
|
{{ key }}: {{ value }}
|
|
</p>
|
|
{% endfor %}
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|
|
|