Private
Public Access
1
0

sending alerts in rudimentary form

This commit is contained in:
Sander Roosendaal
2019-08-19 12:55:54 +02:00
parent 5015266ba8
commit 52dff568a2
4 changed files with 121 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
{% 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 %}