Merge pull request #3899 from nextcloud/issue-3662-not-sending-is-an-error

Fail when the test mail could not be sent
This commit is contained in:
Lukas Reschke 2017-03-18 10:47:57 +01:00 committed by GitHub
commit 1febf042d8
1 changed files with 4 additions and 1 deletions

View File

@ -153,7 +153,10 @@ class MailSettingsController extends Controller {
$message->setFrom([$this->defaultMailAddress]);
$message->setSubject($this->l10n->t('test email settings'));
$message->setPlainBody('If you received this email, the settings seem to be correct.');
$this->mailer->send($message);
$errors = $this->mailer->send($message);
if (!empty($errors)) {
throw new \RuntimeException($this->l10n->t('Mail could not be sent. Check your mail server log'));
}
} catch (\Exception $e) {
return [
'data' => [