46 lines
1.7 KiB
Twig
46 lines
1.7 KiB
Twig
{% block subject %}
|
|
{{site.title}} - new membership requested
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{% if admin_fallback %}
|
|
<hr style="color: #990000" />
|
|
<h3 style="color: #990000">You are receiving this email as an organisation/site administrator!</h3>
|
|
<p style="color: #990000">This email has been sent to you in lieu of <b>{{organisation.name}}</b> as there are currently no approved administrators for the organisation.</p>
|
|
<hr style="color: #990000" />
|
|
{% endif %}
|
|
<p>
|
|
Dear {{recipient.first_name}},
|
|
</p>
|
|
<p>
|
|
Someone has requested to join your organisation {{organisation.name}} at {{site.title}} ({{site.uri.public}}).
|
|
</p>
|
|
<p>
|
|
The requester details are:
|
|
<dl>
|
|
<dt>Requester name:</dt>
|
|
<dd>{{requester.full_name}}</dd>
|
|
|
|
<dt>Requester email:</dt>
|
|
<dd>{{requester.email}}</dd>
|
|
</dl>
|
|
</p>
|
|
<p>
|
|
You may accept or reject this request via the control dashboard (<a href="{{site.uri.public}}/organisations/o/{{organisation.slug}}">{{site.uri.public}}/organisations/o/{{organisation.slug}}</a>).
|
|
</p>
|
|
<p>
|
|
To accept this request immediately you may do so by visiting: <a href="{{site.uri.public}}/organisations/members/accept?token={{token}}">{{site.uri.public}}/organisations/members/accept?token={{token}}</a>.
|
|
</p>
|
|
<p>
|
|
To reject this request immediately you may do so by visiting: <a href="{{site.uri.public}}/organisations/members/reject?token={{token}}">{{site.uri.public}}/organisations/members/reject?token={{token}}</a>.
|
|
</p>
|
|
{% if approval_expiration %}
|
|
<p>
|
|
The approval period for this request will expire in {{approval_expiration}} at which point the request will be automatically rejected.
|
|
</p>
|
|
{% endif %}
|
|
<p>
|
|
With regards,<br>
|
|
The {{site.title}} Team
|
|
</p>
|
|
{% endblock %} |