Throughout the project I tried a lot of things to figure out why I couldn't send the confirmation email :) After all my attempts I realized that my attribute prefix (us_email) was not allowed and I had to change it Written as "email". Even tried overriding the getEmailForVerification function but it didn't work
public function getEmailForVerification(): string { return $this->us_email; }
Is there a way to use the "us_" prefix as my email attribute name and send email verification notifications?
WooooW, I found the solution I used "Accessors and Modifiers". It looks like there is an alias set for my us_email field