diff --git a/app/Services/Credit/SendEmail.php b/app/Services/Credit/SendEmail.php index c7633f2d62b5..68fee262d4e3 100644 --- a/app/Services/Credit/SendEmail.php +++ b/app/Services/Credit/SendEmail.php @@ -45,7 +45,7 @@ class SendEmail $this->credit->invitations->each(function ($invitation) { if (! $invitation->contact->trashed() && $invitation->contact->email) { - EmailEntity::dispatch($invitation, $invitation->company, $this->reminder_template); + EmailEntity::dispatch($invitation, $invitation->company, $this->reminder_template)->delay(2); } });