From: Roland Häder Date: Wed, 18 May 2016 07:55:46 +0000 (+0200) Subject: opps, use addedUser for having the id number available X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1ef48613eefe4d38f7dc1d03817e180c1018d7ce;p=pizzaservice-ejb.git opps, use addedUser for having the id number available --- diff --git a/src/java/org/mxchange/jusercore/model/register/PizzaUserRegistrationSessionBean.java b/src/java/org/mxchange/jusercore/model/register/PizzaUserRegistrationSessionBean.java index eb40ed7..bad0d8e 100644 --- a/src/java/org/mxchange/jusercore/model/register/PizzaUserRegistrationSessionBean.java +++ b/src/java/org/mxchange/jusercore/model/register/PizzaUserRegistrationSessionBean.java @@ -172,7 +172,7 @@ public class PizzaUserRegistrationSessionBean extends BasePizzaDatabaseBean impl try { // Create email address and set - emailAddress = new InternetAddress(user.getUserContact().getContactEmailAddress()); + emailAddress = new InternetAddress(addedUser.getUserContact().getContactEmailAddress()); } catch (final AddressException ex) { // Throw again throw new EJBException(ex); @@ -180,7 +180,7 @@ public class PizzaUserRegistrationSessionBean extends BasePizzaDatabaseBean impl // Send email // TODO: Internationlize the subject line somehow - this.sendEmail("Registration", "registration", emailAddress, user); //NOI18N + this.sendEmail("Registration", "registration", emailAddress, addedUser); //NOI18N // Trace message this.getLoggerBeanLocal().logTrace(MessageFormat.format("registerUser: addedUser={0},addedUser.userId={1} - EXIT!", addedUser, addedUser.getUserId())); //NOI18N