2011-06-01 15:32:00 +00:00
|
|
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
|
|
|
<#-- Confirmation that the user has changed his email account. -->
|
|
|
|
|
2011-06-15 18:23:07 +00:00
|
|
|
<#assign subject = "Your VIVO email account has been changed." />
|
|
|
|
|
|
|
|
<#assign html>
|
2011-06-01 15:32:00 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2011-06-15 18:23:07 +00:00
|
|
|
<title>${subject}</title>
|
2011-06-01 15:32:00 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>
|
|
|
|
Hi, ${userAccount.firstName} ${userAccount.lastName}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
You recently changed the email address associated with
|
|
|
|
${userAccount.firstName} ${userAccount.lastName}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Thank you.
|
|
|
|
</p>
|
|
|
|
</body>
|
2011-06-15 18:23:07 +00:00
|
|
|
</html>
|
|
|
|
</#assign>
|
|
|
|
|
|
|
|
<#assign text>
|
|
|
|
Hi, ${userAccount.firstName} ${userAccount.lastName}
|
|
|
|
|
|
|
|
You recently changed the email address associated with
|
|
|
|
${userAccount.firstName} ${userAccount.lastName}
|
|
|
|
|
|
|
|
Thank you.
|
|
|
|
</#assign>
|
|
|
|
|
|
|
|
<@email subject=subject html=html text=text />
|