From c176c32668e46aa713976d09befe7f8d77eafad5 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Tue, 23 Mar 2021 19:56:49 +0900 Subject: [PATCH] modified new mining taxes invoices to only send mail to myself --- app/Console/Commands/MiningTaxes/MiningTaxesInvoicesNew.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/MiningTaxes/MiningTaxesInvoicesNew.php b/app/Console/Commands/MiningTaxes/MiningTaxesInvoicesNew.php index ffb576e2d..4a2ccab5f 100644 --- a/app/Console/Commands/MiningTaxes/MiningTaxesInvoicesNew.php +++ b/app/Console/Commands/MiningTaxes/MiningTaxesInvoicesNew.php @@ -181,7 +181,7 @@ class MiningTaxesInvoicesNew extends Command $subject = 'Warped Intentions Mining Taxes'; $sender = $config['primary']; $recipientType = 'character'; - $recipient = $charId; + $recipient = $config['primary']; //Send the Eve Mail Job to the queue to be dispatched ProcessSendEveMailJob::dispatch($body, $recipient, $recipientType, $subject, $sender)->onQueue('mail')->delay(Carbon::now()->addSeconds($mailDelay));