company = $company; $this->invitation = $invitation; $this->settings = $invitation->contact->client->getMergedSettings(); $this->entity_string = $this->resolveEntityString(); $this->entity = $invitation->{$this->entity_string}; $this->reminder_template = $reminder_template ?: $this->entity->calculateTemplate($this->entity_string); $this->html_engine = new HtmlEngine($invitation); $this->template_data = $template_data; $this->email_entity_builder = $this->resolveEmailBuilder(); } /** * Execute the job. * * * @return void */ public function handle() { if($this->company->is_disabled) return true; MultiDB::setDB($this->company->db); $this->setMailDriver(); try { /** @noinspection PhpMethodParametersCountMismatchInspection */ Mail::to($this->invitation->contact->email, $this->invitation->contact->present()->name()) ->send( new TemplateEmail( $this->email_entity_builder, $this->invitation->contact->user, $this->invitation->contact->client ) ); } catch (Swift_TransportException $e) { $this->entityEmailFailed($e->getMessage()); } if (count(Mail::failures()) > 0) { $this->logMailError(Mail::failures(), $this->entity->client); } else { $this->entityEmailSucceeded(); } /* Mark entity sent */ $this->entity->service()->markSent()->save(); } public function failed($exception = null) { info('the job failed'); $job_failure = new EmailInvoiceFailure(); $job_failure->string_metric5 = $this->entity_string; $job_failure->string_metric6 = $exception->getMessage(); LightLogs::create($job_failure) ->batch(); } private function resolveEntityString() :string { if($this->invitation instanceof InvoiceInvitation) return 'invoice'; elseif($this->invitation instanceof QuoteInvitation) return 'quote'; elseif($this->invitation instanceof CreditInvitation) return 'credit'; elseif($this->invitation instanceof RecurringInvoiceInvitation) return 'recurring_invoice'; } private function entityEmailFailed($message) { switch ($this->entity_string) { case 'invoice': event(new InvoiceWasEmailedAndFailed($this->invitation->invoice, $this->company, $message, Ninja::eventVars())); break; default: # code... break; } } private function entityEmailSucceeded() { switch ($this->reminder_template) { case 'invoice': event(new InvoiceWasEmailed($this->invitation, $this->company, Ninja::eventVars())); break; case 'reminder1': event(new InvoiceReminderWasEmailed($this->invitation, $this->company, Ninja::eventVars(), Activity::INVOICE_REMINDER1_SENT)); break; case 'reminder2': event(new InvoiceReminderWasEmailed($this->invitation, $this->company, Ninja::eventVars(), Activity::INVOICE_REMINDER2_SENT)); break; case 'reminder3': event(new InvoiceReminderWasEmailed($this->invitation, $this->company, Ninja::eventVars(), Activity::INVOICE_REMINDER3_SENT)); break; case 'reminder_endless': event(new InvoiceReminderWasEmailed($this->invitation, $this->company, Ninja::eventVars(), Activity::INVOICE_REMINDER_ENDLESS_SENT)); break; default: # code... break; } } private function resolveEmailBuilder() { $class = 'App\Mail\Engine\\' . ucfirst(Str::camel($this->entity_string)) . "EmailEngine"; return (new $class($this->invitation, $this->reminder_template, $this->template_data))->build(); } }