From 8e82c65ec48bfd9f1d36ef59e5b0bfa2d82d896a Mon Sep 17 00:00:00 2001 From: j2blake Date: Thu, 8 Mar 2012 16:23:44 +0000 Subject: [PATCH] NIHVIVO-3626 Create a VIVO-specific version of the new account notification email, so it can contain different text from the generic Vitro version. --- .../userAccounts-acctCreatedEmail.ftl | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 productMods/templates/freemarker/body/accounts/userAccounts-acctCreatedEmail.ftl diff --git a/productMods/templates/freemarker/body/accounts/userAccounts-acctCreatedEmail.ftl b/productMods/templates/freemarker/body/accounts/userAccounts-acctCreatedEmail.ftl new file mode 100644 index 00000000..ec2bb70e --- /dev/null +++ b/productMods/templates/freemarker/body/accounts/userAccounts-acctCreatedEmail.ftl @@ -0,0 +1,68 @@ +<#-- $This file is distributed under the terms of the license in /doc/license.txt$ --> + +<#-- Confirmation that an account has been created. --> + +<#assign subject = "Your ${siteName} account has been created." /> + +<#assign html> + + + ${subject} + + +

+ ${userAccount.firstName} ${userAccount.lastName} +

+ +

+ Congratulations! +

+ +

+ We have created your new VIVO account associated with ${userAccount.emailAddress}. +

+ +

+ If you did not request this new account you can safely ignore this email. + This request will expire if not acted upon for 30 days. +

+ +

+ Click the link below to create your password for your new account using our secure server. +

+ +

+ ${passwordLink} +

+ +

+ If the link above doesn't work, you can copy and paste the link directly into your browser's address bar. +

+ +

+ Thanks! +

+ + + + +<#assign text> +${userAccount.firstName} ${userAccount.lastName} + +Congratulations! + +We have created your new VIVO account associated with +${userAccount.emailAddress}. + +If you did not request this new account you can safely ignore this email. +This request will expire if not acted upon for 30 days. + +Paste the link below into your browser's address bar to create your password +for your new account using our secure server. + +${passwordLink} + +Thanks! + + +<@email subject=subject html=html text=text /> \ No newline at end of file