Added mail:list
This commit is contained in:
parent
708d9a9f67
commit
073fa466d6
73
app/Console/Commands/MailList.php
Normal file
73
app/Console/Commands/MailList.php
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
|
||||||
|
use App\Models\Address;
|
||||||
|
|
||||||
|
class MailList extends Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'mail:list {ftn : FTN address}';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'List mail waiting for a node';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
* @throws \Exception
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$ao = Address::findFTN($this->argument('ftn'));
|
||||||
|
|
||||||
|
$this->info('Netmail');
|
||||||
|
$this->table([
|
||||||
|
'id' => 'ID',
|
||||||
|
'msgid' => 'MSGID',
|
||||||
|
'from' => 'FROM',
|
||||||
|
'to' => 'TO',
|
||||||
|
'subject' => 'SUBJECT',
|
||||||
|
],$ao->netmailWaiting()->map(function($item) {
|
||||||
|
return [
|
||||||
|
'id'=>$item->id,
|
||||||
|
'msgid'=>$item->msgid,
|
||||||
|
'from'=>$item->from,
|
||||||
|
'to'=>$item->to,
|
||||||
|
'subject'=>$item->subject,
|
||||||
|
];
|
||||||
|
}));
|
||||||
|
|
||||||
|
$this->info('Echomail');
|
||||||
|
$this->table([
|
||||||
|
'id' => 'ID',
|
||||||
|
'msgid' => 'MSGID',
|
||||||
|
'from' => 'FROM',
|
||||||
|
'to' => 'TO',
|
||||||
|
'subject' => 'SUBJECT',
|
||||||
|
'area' => 'AREA',
|
||||||
|
],$ao->echomailWaiting()->map(function($item) {
|
||||||
|
return [
|
||||||
|
'id'=>$item->id,
|
||||||
|
'msgid'=>$item->msgid,
|
||||||
|
'from'=>$item->from,
|
||||||
|
'to'=>$item->to,
|
||||||
|
'subject'=>$item->subject,
|
||||||
|
'area'=>$item->echoarea->name,
|
||||||
|
];
|
||||||
|
}));
|
||||||
|
|
||||||
|
return Command::SUCCESS;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user