email = $user->email; $this->userId = $user->id; } /** * Execute the job. * * @return void */ public function handle() { Mail::to($this->email)->send(new AccountExpired($this->userId)); } }