Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 8512a4d

Browse files
authored
Update Sendmail.php
`error_get_last()` usage instead of error handler replacement.
1 parent ece418b commit 8512a4d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Transport/Sendmail.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -289,16 +289,14 @@ protected function prepareParameters(Mail\Message $message)
289289
*/
290290
public function mailHandler($to, $subject, $message, $headers, $parameters)
291291
{
292-
set_error_handler([$this, 'handleMailErrors']);
293292
if ($parameters === null) {
294293
$result = mail($to, $subject, $message, $headers);
295294
} else {
296295
$result = mail($to, $subject, $message, $headers, $parameters);
297296
}
298-
restore_error_handler();
299297

300-
if ($this->errstr !== null || ! $result) {
301-
$errstr = $this->errstr;
298+
if (!$result) {
299+
$errstr = error_get_last()['message'];
302300
if (empty($errstr)) {
303301
$errstr = 'Unknown error';
304302
}

0 commit comments

Comments
 (0)