new_email = $new_email; $this->old_email = $old_email; $this->company = $company; $this->settings = $this->company->settings; } public function handle() { if ($this->company->is_disabled) { return true; } //Set DB MultiDB::setDb($this->company->db); //If we need to set an email driver do it now $this->setMailDriver(); /*Build the object*/ $mail_obj = new stdClass; $mail_obj->subject = ctrans('texts.email_address_changed'); $mail_obj->markdown = 'email.admin.generic'; $mail_obj->from = [$this->company->owner()->email, $this->company->owner()->present()->name()]; $mail_obj->tag = $this->company->company_key; $mail_obj->data = $this->getData(); //Send email via a Mailable class // try { Mail::to($this->old_email) ->send(new UserNotificationMailer($mail_obj)); Mail::to($this->new_email) ->send(new UserNotificationMailer($mail_obj)); } catch (\Exception $e) { $this->failed($e); $this->logMailError($e->getMessage(), $this->company->owner()); } } private function getData() { return [ 'title' => ctrans('texts.email_address_changed'), 'message' => ctrans( 'texts.email_address_changed_message', ['old_email' => $this->old_email, 'new_email' => $this->new_email, ] ), 'url' => config('ninja.app_url'), 'button' => ctrans('texts.account_login'), 'signature' => $this->company->owner()->signature, 'logo' => $this->company->present()->logo(), 'settings' => $this->settings, 'whitelabel' => $this->company->account->isPaid() ? true : false, ]; } }