2019-12-30 15:13:11 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
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();
|
|
|
|
foreach ($users as $user) {
|
2019-12-30 16:21:50 +08:00
|
|
|
if ($user->remind_expire) $this->remindExpire($user);
|
2019-12-30 15:13:11 +08:00
|
|
|
}
|
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
|
|
|
|
private function remindExpire($user)
|
|
|
|
{
|
2020-04-05 15:30:58 +08:00
|
|
|
if ($user->expired_at !== NULL && ($user->expired_at - 86400) < time() && $user->expired_at > time()) {
|
2020-03-18 18:12:19 +08:00
|
|
|
SendEmailJob::dispatch([
|
2019-12-30 16:57:21 +08:00
|
|
|
'email' => $user->email,
|
|
|
|
'subject' => '在' . config('v2board.app_name', 'V2board') . '的服务即将到期',
|
2020-03-18 18:12:19 +08:00
|
|
|
'template_name' => 'remindExpire',
|
2019-12-30 16:57:21 +08:00
|
|
|
'template_value' => [
|
2019-12-30 21:05:48 +08:00
|
|
|
'name' => config('v2board.app_name', 'V2Board'),
|
|
|
|
'url' => config('v2board.app_url')
|
2019-12-30 16:57:21 +08:00
|
|
|
]
|
2019-12-30 17:54:50 +08:00
|
|
|
]);
|
2019-12-30 16:57:21 +08:00
|
|
|
}
|
2019-12-30 15:13:11 +08:00
|
|
|
}
|
|
|
|
}
|