email = $email; $this->name = $name; $this->forgot_code = $forgot_code; $this->to($email); $this->subject('Forgot Password'); $this->replyTo(config('mail.from.address')); } /** * Build the message. */ public function build(): self { return $this->view('admin::mails/forgot_password', get_object_vars($this)); } }