verify = $verify; $this->appUrl = $url; } /** * Get the message envelope. * * @return Envelope */ public function envelope() { return new Envelope( subject: 'Complete Account Registration', ); } /** * Get the message content definition. * * @return Content */ public function content() { return new Content( markdown: 'emails.confirm_app_email', with: [ 'verify' => $this->verify, 'appUrl' => $this->appUrl, ], ); } /** * Get the attachments for the message. */ public function attachments(): array { return []; } }