
For some reason, the password-reset template was too long to do proper substitution on the last line. Removing some of the intermediate content fixed the problem, but without appropriate content. I had been unhappy with the @@file approach anyway, so I went back to language-specific templates for each type of message.
43 lines
914 B
Text
43 lines
914 B
Text
<#-- $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. -->
|
|
|
|
<#assign subject = "Su cuenta ${siteName} ha sido creada." />
|
|
|
|
<#assign html>
|
|
<html>
|
|
<head>
|
|
<title>${subject}</title>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
${userAccount.firstName} ${userAccount.lastName}
|
|
</p>
|
|
|
|
<p>
|
|
<strong>¡Enhorabuena!</strong>
|
|
</p>
|
|
|
|
<p>
|
|
Hemos creado la nueva cuenta VIVO asociado con ${userAccount.emailAddress}.
|
|
</p>
|
|
|
|
<p>
|
|
¡Gracias!
|
|
</p>
|
|
</body>
|
|
</html>
|
|
</#assign>
|
|
|
|
<#assign text>
|
|
${userAccount.firstName} ${userAccount.lastName}
|
|
|
|
¡Enhorabuena!
|
|
|
|
Hemos creado la nueva cuenta VIVO asociado con
|
|
${userAccount.emailAddress}.
|
|
|
|
¡Gracias!
|
|
</#assign>
|
|
|
|
<@email subject=subject html=html text=text />
|