mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10593 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
31 lines
968 B
Plaintext
31 lines
968 B
Plaintext
<#assign inviterPersonRef=args["inviterPersonRef"]/>
|
|
<#assign inviterPerson=companyhome.nodeByReference[inviterPersonRef]/>
|
|
<#assign inviteePersonRef=args["inviteePersonRef"]/>
|
|
<#assign inviteePerson=companyhome.nodeByReference[inviteePersonRef]/>
|
|
|
|
Hello ${inviteePerson.properties["cm:firstName"]},
|
|
|
|
You have been invited by ${inviterPerson.properties["cm:firstName"]} ${inviterPerson.properties["cm:lastName"]} to join the '${args["siteName"]}' site.
|
|
|
|
Your role in the site will be ${args["inviteeSiteRole"]}.
|
|
|
|
To accept this invitation click the link below.
|
|
|
|
${args["acceptLink"]}
|
|
|
|
<#if args["inviteeGenPassword"]?exists>
|
|
and enter the following information:
|
|
|
|
Username: ${args["inviteeUserName"]}
|
|
Password: ${args["inviteeGenPassword"]}
|
|
|
|
We strongly advise you to change your password when you log in for the first time.
|
|
|
|
</#if>
|
|
If you do not want to join the site then click here:
|
|
|
|
${args["rejectLink"]}
|
|
|
|
Regards,
|
|
Alfresco Share Team
|