verificationUrl = $verificationUrl; } public function build() { return $this->subject('Verify Your Email Address') ->markdown('emails.verify-link') ->with([ 'verificationUrl' => $this->verificationUrl, ]); } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Verify Email Link Mail', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'emails.verify-link', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }