美文网首页
laravel写crontab定时任务(发送邮件)和larave

laravel写crontab定时任务(发送邮件)和larave

作者: 頭大的馮馮 | 来源:发表于2019-08-05 11:12 被阅读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';

```

相关文章

网友评论

      本文标题:laravel写crontab定时任务(发送邮件)和larave

      本文链接:https://www.haomeiwen.com/subject/hxbpdctx.html