user = $user; $this->app = $app; $this->verificationUrl = $verificationUrl; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Changed Email Verification', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'mail.email-change-verification', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }