Files
nnterp-react-admin/app/Http/Controllers/Auth/EmailVerificationNotificationController.php
2026-03-13 20:49:46 +08:00

34 lines
1.0 KiB
PHP

<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Models\User;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
class EmailVerificationNotificationController extends Controller
{
/**
* Send a new email verification notification.
*/
public function store(Request $request): RedirectResponse
{
if ($request->user()->hasVerifiedEmail()) {
return redirect()->intended(route('dashboard', absolute: false));
}
// Apply dynamic mail configuration
$adminUser = User::where('type', 'superadmin')->first();
try {
if ($adminUser) {
SetConfigEmail($adminUser->id);
}
$request->user()->sendEmailVerificationNotification();
return back()->with('status', 'verification-link-sent');
} catch (\Throwable $th) {
return back()->withErrors(['email' => 'Failed to send verification email. Please try again later.']);
}
}
}