F
Filament10mo ago
ocram82

Email verification not sended

hi i'm using ->emailVerification() in the AppPanelProvider in this way:
public function panel(Panel $panel): Panel
{
return $panel
->default()
->id('app')
->path('app')
->login()
->registration()
->passwordReset()
->emailVerification()
->profile()
...
public function panel(Panel $panel): Panel
{
return $panel
->default()
->id('app')
->path('app')
->login()
->registration()
->passwordReset()
->emailVerification()
->profile()
...
But after the user registration no email was sended. I've correctly configure mailpit and it works with notifications or other stuff. What i missing?
8 Replies
toeknee
toeknee10mo ago
try running: php artisan queue:work I am working if it's be sent to a queue
ocram82
ocram8210mo ago
thanks, i've just tried but nothing happens
Roberto
Roberto10mo ago
did you add this?
No description
ocram82
ocram8210mo ago
oh! thanks! in a try that i made before yes....but now i forgot to add it newly Ok now the email was sent but the verify link take me to a 403 forbidden page....why? furthermore after registration i obtain 403 forbidden too. I should obtain the page that advise the user to check his mail for validation....i'm stuck
Roberto
Roberto10mo ago
are you using multi tenancy?
ocram82
ocram8210mo ago
yes
ocram82
ocram8210mo ago
ok i try, actually i've just add a tenant inside a User observer creating but maybe your link is the correct way to do it