laravel写crontab定时任务(发送邮件)和larave
2019-08-05 本文已影响0人
頭大的馮馮
1.artisan命令:
php artisan make:command SendRejectEmail
2.app/Console/Commands下就会看到SendRejectEmail.php
```
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'send-reject-email:email';
/**
* The console command description.
*
* @var string
*/
protected $description = 'send reject email';
```