2011-06-13 14:17:59 +00:00
|
|
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
|
|
|
<#-- Confirmation that an account has been created for an externally-authenticated user. -->
|
|
|
|
|
2011-07-06 19:26:42 +00:00
|
|
|
<#assign subject = "Your ${siteName} account has been created." />
|
2011-06-15 18:23:07 +00:00
|
|
|
|
|
|
|
<#assign html>
|
2011-06-13 14:17:59 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2011-06-15 18:23:07 +00:00
|
|
|
<title>${subject}</title>
|
2011-06-13 14:17:59 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>
|
|
|
|
${userAccount.firstName} ${userAccount.lastName}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<strong>Congratulations!</strong>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
We have created your new VIVO account associated with ${userAccount.emailAddress}.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Thanks!
|
|
|
|
</p>
|
|
|
|
</body>
|
2011-06-15 18:23:07 +00:00
|
|
|
</html>
|
|
|
|
</#assign>
|
|
|
|
|
|
|
|
<#assign text>
|
|
|
|
${userAccount.firstName} ${userAccount.lastName}
|
|
|
|
|
|
|
|
Congratulations!
|
|
|
|
|
|
|
|
We have created your new VIVO account associated with
|
|
|
|
${userAccount.emailAddress}.
|
|
|
|
|
|
|
|
Thanks!
|
|
|
|
</#assign>
|
|
|
|
|
|
|
|
<@email subject=subject html=html text=text />
|