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