user = $user; $this->days = $days; } /** * Execute the job. */ public function handle(): void { Mail::to($this->user->email)->send(new AccountWillExpire($this->user, $this->days)); } }