14 lines
253 B
HTML
14 lines
253 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
|
|
|
<p>
|
|
{{ managername }} has accepted your request to be part
|
|
of the team {{ teamname }}.
|
|
</p>
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|