company = $company; $this->request = $request; $this->report_class = $report_class; $this->file_name = $file_name; } public function handle() { MultiDB::setDb($this->company->db); $export = new $this->report_class($this->company, $this->request); $csv = $export->run(); $nmo = new NinjaMailerObject; $nmo->mailable = new DownloadReport($this->company, $csv, $this->file_name); $nmo->company = $this->company; $nmo->settings = $this->company->settings; $nmo->to_user = $this->company->owner(); NinjaMailerJob::dispatch($nmo); } }