Building out a passwordless login system for a client using laravel. Wanting to make sure the following regex rule for email validation will only let users to submit an email address with that specific domain account...
'email' => 'required|email:rfc,dns,spoof|regex:/^.+@domain.com$/i',
More of a sanity check to make sure I am not missing or not thinking of something else that could be used to work around that.
Cheers
Citti