refactor(Email): enhance error handling in SMTP and resend methods by passing context to handleError function
This commit is contained in:
@@ -269,7 +269,7 @@ class Email extends Component
|
||||
} catch (\Throwable $e) {
|
||||
$this->smtpEnabled = false;
|
||||
|
||||
return handleError($e);
|
||||
return handleError($e, $this);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -177,7 +177,7 @@ class SettingsEmail extends Component
|
||||
} catch (\Throwable $e) {
|
||||
$this->smtpEnabled = false;
|
||||
|
||||
return handleError($e);
|
||||
return handleError($e, $this);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -207,7 +207,7 @@ class SettingsEmail extends Component
|
||||
} catch (\Throwable $e) {
|
||||
$this->resendEnabled = false;
|
||||
|
||||
return handleError($e);
|
||||
return handleError($e, $this);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user