Php 如何在laravel 8中获得验证链接(使用jetstream)?

Php 如何在laravel 8中获得验证链接(使用jetstream)?,php,laravel,jetstream,Php,Laravel,Jetstream,我正在尝试使用特定的方法发送验证电子邮件(使用发送蓝色api)。我需要找到发送电子邮件和获取验证url的方法。 到目前为止,我已经能够修改发送方法,但没有得到验证url class User extends Authenticatable implements MustVerifyEmail { /** NOT IMPORTANT CODE **/ public function sendEmailVerificationNotification() { $url = '

我正在尝试使用特定的方法发送验证电子邮件(使用发送蓝色api)。我需要找到发送电子邮件和获取验证url的方法。 到目前为止,我已经能够修改发送方法,但没有得到验证url

class User extends Authenticatable implements MustVerifyEmail
{
  /** NOT IMPORTANT CODE **/
  public function sendEmailVerificationNotification() {
        $url = '????'; // <-- how do i get it?
        EmailService::sendEmail([['email' => $this->email, 'name' => $this->name]], 30, ['name' => $this->name, 'url' => $url]);
    }
}
类用户扩展Authenticatable实现MustVerifyEmail
{
/**不重要的代码**/
公共函数sendEmailVerificationNotification(){
$url='???';//$this->email,'name'=>$this->name]],30,['name'=>$this->name,'url'=>$url]);
}
}

//抱歉,如果有拼写或语法错误,英语不是我的第一语言

请查看
vendor/laravel/framework/src/illighte/Auth/Notifications/VerifyEmail.php中的方法
verificationUrl()