From a0bbd01bdcb0bf718f0278f953d8418248900e00 Mon Sep 17 00:00:00 2001 From: Massimiliano Assante Date: Wed, 17 May 2017 12:33:15 +0000 Subject: [PATCH] added template welcome message git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/email-templates-library@148777 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../portal/mailing/templates/TemplateWelcomeCreatedAccount.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/org/gcube/portal/mailing/templates/TemplateWelcomeCreatedAccount.java b/src/main/java/org/gcube/portal/mailing/templates/TemplateWelcomeCreatedAccount.java index 46a3439..5de5329 100644 --- a/src/main/java/org/gcube/portal/mailing/templates/TemplateWelcomeCreatedAccount.java +++ b/src/main/java/org/gcube/portal/mailing/templates/TemplateWelcomeCreatedAccount.java @@ -50,10 +50,12 @@ public class TemplateWelcomeCreatedAccount extends AbstractTemplate implements T .replace("{{SELECTED_VRE_NAME}}", this.theVRE.getGroupName()) .replace("{{USER_NAME}}", theCreatedAccountUser.getFirstName()) + .replace("{{USER_EMAIL}}", theCreatedAccountUser.getEmail()) .replace("{{MANAGER_USER_FULLNAME}}", theManagerUser.getFullname()) .replace("{{GATEWAY_LOGO:URL}}", getGatewayLogoURL()) .replace("{{GATEWAY_URL}}", getGatewayURL()) .replace("{{GATEWAY_NAME}}", getGatewayName()) + .replace("{{VRE_LOGO:URL}}", vreLogoURL) .replace("{{VRE_URL}}", signUpURL); }