当用户注册时,将向确认发送电子邮件
但是,当用户更新电子邮件时,我该如何发送通知?
就像他注册
如果你想重新验证用户的电子邮件,你应该将他的email_verified_at设置为null,然后调用sendEmailVerificationNotification方法。
在您的用户模型(位于app\user中(中添加此方法:
public function sendNewVerification() {
$this->email_verified_at =null;
$this->sendEmailVerificationNotification();
}
并在控制器中调用它。
希望这能奏效。