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); }