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