/** * Send the user an e-mail with a link for password reset * * @param \Gems_User_User $user * @return mixed string or array of Errors or null when successful. */ public function sendUserResetEMail(\Gems_User_User $user) { $subjectTemplate = $this->_('Password reset requested'); // Multi line strings did not come through correctly in poEdit $bbBodyTemplate = $this->_("Dear {greeting},\n\n\nA new password was requested for your [b]{organization}[/b] account on the [b]{project}[/b] site, please click within {reset_in_hours} hours on [url={reset_url}]this link[/url] to enter the password of your choice.\n\n\n{organization_signature}\n\n[url={reset_url}]{reset_url}[/url]\n"); // */ //$bbBodyTemplate = $this->_("To set a new password for the [b]{organization}[/b] site [b]{project}[/b], please click on this link:\n{reset_url}"); return $user->sendMail($subjectTemplate, $bbBodyTemplate, true); }