otp = $otp; $this->name = $name; $this->userType = $userType; } public function envelope(): Envelope { return new Envelope( subject: 'Password Reset OTP – ' . config('app.name'), ); } public function content(): Content { return new Content( view: 'emails.forgot-password-otp', ); } }