vitro/webapp/web/templates/freemarker/body/accounts/userAccounts-confirmEmailChangedEmail.ftl

39 lines
891 B
Text
Raw Normal View History

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