mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
Merge pull request #1087 from wilr/5
FIX Log any email exceptions gracefully
This commit is contained in:
commit
15e834de87
@ -2,6 +2,7 @@
|
||||
|
||||
namespace SilverStripe\UserForms\Control;
|
||||
|
||||
use Exception;
|
||||
use PageController;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use SilverStripe\AssetAdmin\Controller\AssetAdmin;
|
||||
@ -429,9 +430,18 @@ JS
|
||||
}
|
||||
|
||||
$email->setBody($body);
|
||||
$email->sendPlain();
|
||||
|
||||
try {
|
||||
$email->sendPlain();
|
||||
} catch (Exception $e) {
|
||||
Injector::inst()->get(LoggerInterface::class)->error($e);
|
||||
}
|
||||
} else {
|
||||
$email->send();
|
||||
try {
|
||||
$email->send();
|
||||
} catch (Exception $e) {
|
||||
Injector::inst()->get(LoggerInterface::class)->error($e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user