@GracefulShutdown
public boolean sendForgottenPasswordEmail(EmailAddress emailAddress)
{
ValidationUtils.assertNotNull(emailAddress, "emailAddress cannot be null");
ForgottenPasswordData verificationData = doGetForgottenPasswordData(emailAddress);
if (verificationData == null)
return false;
Map<String,Object> templateModel = new HashMap<String,Object>();
templateModel.put("verificationData", verificationData);