v2board/app/Console/Commands/SendRemindMail.php

51 lines
964 B
PHP
Raw Normal View History

2019-12-30 15:13:11 +08:00
<?php
namespace App\Console\Commands;
2021-08-28 14:39:10 +08:00
use App\Services\MailService;
2019-12-30 15:13:11 +08:00
use Illuminate\Console\Command;
use App\Models\User;
2019-12-30 16:37:47 +08:00
use App\Models\MailLog;
2020-03-18 18:12:19 +08:00
use App\Jobs\SendEmailJob;
2019-12-30 15:13:11 +08:00
class SendRemindMail extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'send:remindMail';
/**
* The console command description.
*
* @var string
*/
protected $description = '发送提醒邮件';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$users = User::all();
2021-08-28 14:39:10 +08:00
$mailService = new MailService();
2019-12-30 15:13:11 +08:00
foreach ($users as $user) {
2021-08-28 14:39:10 +08:00
if ($user->remind_expire) $mailService->remindExpire($user);
2019-12-30 16:57:21 +08:00
}
2019-12-30 15:13:11 +08:00
}
}