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:
commit
1febf042d8
1 changed files with 4 additions and 1 deletions
|
@ -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' => [
|
||||
|
|
Loading…
Reference in a new issue