diff --git a/app/Console/Commands/sendmail.php b/app/Console/Commands/sendmail.php
index 0441391b3..189956311 100644
--- a/app/Console/Commands/sendmail.php
+++ b/app/Console/Commands/sendmail.php
@@ -58,7 +58,7 @@ class SendMail extends Command
public function handle()
{
//Create the command helper container
- $task = new CommandHelper('CorpJournal');
+ $task = new CommandHelper('SendMail');
//Add the entry into the jobs table saying the job is starting
$task->SetStartStatus();
@@ -78,38 +78,8 @@ class SendMail extends Command
]);
$esi = new Eseye($authentication);
- //Get the full list of bills to send out
- $bills = MonthlyMarketTax::where(['month' => $date->month, 'year' => $date->year])->get();
- //For each of the bills send a mail out
- foreach($bills as $bill) {
- //Send a mail out with the bill
- $subject = 'Market Taxes Owed';
- $body = 'Month: ' .
- $bill->month .
- '
Market Taxes Owed: ' .
- $bill->tax_owed .
- '
Please remit to Spatial Forces';
- try {
- $this->line('Attemping to send the mail.');
- $esi->setBody(['mail' => [
- 'approved_cost' => 50000,
- 'body' => $body,
- 'recipients' => [
- 'recipient_id' => (int)$bill->character_id,
- 'recipient_type' => 'character',
- ],
- 'subject' => $subject,
- ]])->invoke('post', '/characters/{character_id}/mail/', [
- 'character_id'=> 93738489,
- ]);
- $this->line('Mail sent.');
-
-
- } catch(RequestFailedException $e) {
- $this->line('Error is ' . $e);
- }
- $this->line('Jobs done.');
- }
+ //Check for the correct tokens for each of the people holding structures.
+ //If the token is not found, then send a mail asking to have the token registered.
//Mark the job as finished
$task->SetStopStatus();
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php
index 4fdcdef58..2fe8d05e1 100644
--- a/app/Console/Kernel.php
+++ b/app/Console/Kernel.php
@@ -45,9 +45,6 @@ class Kernel extends ConsoleKernel
$schedule->command('services:calculatemarkettax')
->monthlyOn(1, '08:00')
->withoutOverlapping();
- $schedule->command('services:sendmail')
- ->monthlyOn(1, '09:00')
- ->withoutOverlapping();
}
/**