diff --git a/templates/mail/organisation-membership-accepted.html.twig b/templates/mail/organisation-membership-accepted.html.twig new file mode 100644 index 0000000..8a68367 --- /dev/null +++ b/templates/mail/organisation-membership-accepted.html.twig @@ -0,0 +1,16 @@ +{% block subject %} + {{site.title}} - organisation registration approved +{% endblock %} + +{% block body %} +
+ Dear {{recipient.first_name}}, +
++ Your request to join the organisation {{organisation.name}} you submitted at {{site.title}} ({{site.uri.public}}) has been approved. +
+
+ With regards,
+ The {{site.title}} Team
+
+ Dear {{recipient.first_name}}, +
++ Your request to join the organisation {{organisation.name}} you submitted at {{site.title}} ({{site.uri.public}}) has been rejected. +
+
+ With regards,
+ The {{site.title}} Team
+
+ Dear {{recipient.first_name}}, +
++ Someone has requested to join your organisation {{organisation.name}} at {{site.title}} ({{site.uri.public}}). +
++ The requester details are: +
+ You may verify or reject this request via the control dashboard ({{site.uri.public}}/organisations/o/{{organisation.slug}}). +
++ To accept this request immediately you may do so by visiting: {{site.uri.public}}/organisations/members/accept?token={{token}}. +
++ To reject this request immediately you may do so by visiting: {{site.uri.public}}/organisations/members/reject?token={{token}}. +
+{% if approval_expiration %} ++ The approval period for this request will expire in {{approval_expiration}} at which point the request will be automatically rejected. +
+{% endif %} +
+ With regards,
+ The {{site.title}} Team
+