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