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