fixed delay time on dispatching late invoices job

This commit is contained in:
2021-06-04 20:04:50 +09:00
parent 109d70363d
commit 7bfc30e50d
2 changed files with 4 additions and 0 deletions

View File

@@ -93,6 +93,8 @@ class UpdateMiningTaxesLateInvoices15th implements ShouldQueue
//Send a reminder to the user through eve mail about the late invoice
SendEveMail::dispatch($body, $recipient, $recipientType, $subject, $sender)->delay(Carbon::now()->addSeconds($mailDelay));
$mailDelay += 20;
}
}
}

View File

@@ -93,6 +93,8 @@ class UpdateMiningTaxesLateInvoices1st implements ShouldQueue
//Send a reminder to the user through eve mail about the late invoice
SendEveMail::dispatch($body, $recipient, $recipientType, $subject, $sender)->delay(Carbon::now()->addSeconds($mailDelay));
$mailDelay += 20;
}
}
}