invoice = $invoice; $this->reminder_template = $reminder_template; $this->contact = $contact; } /** * Builds the correct template to send. * @return void */ public function run() { if (! $this->reminder_template) { $this->reminder_template = $this->invoice->calculateTemplate('invoice'); } $this->invoice->invitations->each(function ($invitation) { if (! $invitation->contact->trashed() && $invitation->contact->email) { EmailEntity::dispatch($invitation, $invitation->company, $this->reminder_template)->delay(10); } }); } }