diff --git a/src/QUI/ERP/Order/Guest/GuestOrder.php b/src/QUI/ERP/Order/Guest/GuestOrder.php index e451a53288cce43b5abd7535da91cfef42eec4df..c686ff838809876f010a36d869cb1f3d76026869 100644 --- a/src/QUI/ERP/Order/Guest/GuestOrder.php +++ b/src/QUI/ERP/Order/Guest/GuestOrder.php @@ -171,7 +171,7 @@ public static function sendEmailVerification(string $email, QUI\Projects\Project ), QUI::getLocale()->get('quiqqer/order-guestorder', 'mail.auth.body', $localeParams) ); - } catch (QUI\Exception|Exception $e) { + } catch (Exception $e) { QUI\System\Log::addError($e->getMessage()); return; } @@ -293,5 +293,4 @@ public static function sendNewPasswordMail(QUI\Interfaces\Users\User $User) $Mailer->setBody($body); $Mailer->send(); } - }