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