Update AdminController.php

This commit is contained in:
Julian Prieber 2023-03-16 15:11:22 +01:00
parent 3fecf4a875
commit b47ba6959d
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ public function SendTestMail(Request $request)
return redirect()->route('showConfig')->with('success', 'Test email sent successfully!');
} catch (\Exception $e) {
return redirect()->route('showConfig')->with('fail', 'Failed to send test email. Please try again later.');
return redirect()->route('showConfig')->with('fail', 'Failed to send test email.');
}
}