15 lines
267 B
HTML
15 lines
267 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
|
|
|
<p>
|
|
Here is a message from {{ managername }}, the team manager of rowsandall.com team {{ teamname }}.
|
|
</p>
|
|
<p>
|
|
<code>
|
|
{{ message }}
|
|
</code>
|
|
</p>
|
|
{% endblock %}
|