We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ErrorException Object of class CodeIgniter\Email\Email could not be converted to string
APPPATH/Controllers\AuthController.php at line 212
205 ->setSubject(lang('Auth.forgotSubject')) 206 ->setMessage(view($this->config->views['emailForgot'], ['hash' => $user->reset_hash])) 207 ->setMailType('html') 208 ->send(); 209 210 if (! $sent) 211 { 212 log_message('error', "Failed to send forgotten password email to: {$email}"); 213 return redirect()->back()->withInput()->with('error', lang('Auth.unknownError')); 214 } 215 216 return redirect()->route('reset-password')->with('message', lang('Auth.forgotEmailSent')); 217 } 218 219 /**
The text was updated successfully, but these errors were encountered:
5c002e2
Merge pull request #110 from michalsn/feature/forgotten_password_fix
11a84ba
Fixes #100
No branches or pull requests
APPPATH/Controllers\AuthController.php at line 212
The text was updated successfully, but these errors were encountered: