company = $company; $this->user = $user; $this->payment = $payment; $this->settings = $payment->client->getMergedSettings(); } /** * Execute the job. * * @return void */ public function handle() { //Set DB MultiDB::setDb($this->company->db); /*If we are migrating data we don't want to fire these notification*/ if ($this->company->company_users->first()->is_migrating) { return true; } //if we need to set an email driver do it now $this->setMailDriver(); $mail_obj = (new EntityPaidObject($this->payment))->build(); $mail_obj->from = [$this->payment->user->email, $this->payment->user->present()->name()]; //send email Mail::to($this->user->email) ->send(new EntityNotificationMailer($mail_obj)); //catch errors if (count(Mail::failures()) > 0) { return $this->logMailError(Mail::failures(), $this->payment->client); } } }