I need help with Email Verification, I'm new

I have my panel like this:
->id('customer')
->path('customer')
->authGuard('web')
->login(CustomerLogin::class)
->registration(Register::class)
->passwordReset()
->emailVerification(EmailVerificationPrompt::class)
->id('customer')
->path('customer')
->authGuard('web')
->login(CustomerLogin::class)
->registration(Register::class)
->passwordReset()
->emailVerification(EmailVerificationPrompt::class)
I want filament to bring the new user to an email verfication page, where filament will send a code to their email. I have put the email verfication above, but it doesnt redirect to the email verification page.
No description
Solution:
It is showing the issue quite clearly. That's an SMTP issue, I suggest you configure your mailer correctly.
Jump to solution
10 Replies
lazydog
lazydog9mo ago
Have you added the
implements MustVerifyEmail
implements MustVerifyEmail
in your User model?
Yagamii
Yagamii9mo ago
yes I have
No description
lazydog
lazydog9mo ago
It's not a
trait
trait
but rather an interface, so you should include it after
HasName
HasName
Yagamii
Yagamii9mo ago
Oh sorry, late reply, I just got back home
Yagamii
Yagamii9mo ago
This is what it shows after trying to register
No description
Yagamii
Yagamii9mo ago
it been showing it even before I changed the MAIL_HOST to be gmail
Solution
toeknee
toeknee9mo ago
It is showing the issue quite clearly. That's an SMTP issue, I suggest you configure your mailer correctly.
GriffinHood
GriffinHood9mo ago
???
Yagamii
Yagamii8mo ago
Yeah I figured it out yesterday, I'm dyslexic Thank you guyss
GriffinHood
GriffinHood8mo ago
Hello, there.