Skip to content
Snippets Groups Projects
Commit fbfd54d2 authored by Bernhard Posselt's avatar Bernhard Posselt
Browse files

Merge pull request #1806 from eMerzh/ref_1799

Add message when trouble sending email ref #1799
parents 59fd9b2b 4f4e81d3
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,11 @@ class OC_Core_LostPassword_Controller { ...@@ -44,7 +44,11 @@ class OC_Core_LostPassword_Controller {
$msg = $tmpl->fetchPage(); $msg = $tmpl->fetchPage();
$l = OC_L10N::get('core'); $l = OC_L10N::get('core');
$from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply');
OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); try {
OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud');
} catch (Exception $e) {
OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.');
}
self::displayLostPasswordPage(false, true); self::displayLostPasswordPage(false, true);
} else { } else {
self::displayLostPasswordPage(true, false); self::displayLostPasswordPage(true, false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment