尝试使用laravel 5.4中的命令发送电子邮件

时间:2017-09-05 02:51:51

标签: php email laravel-5.4

我正在尝试使用laravel 5.4中的任务调度程序发送电子邮件,以下是代码

我制作了一个邮件控制器

namespace App\Http\Controllers;

use Auth;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Mail;

# MAiler
use App\Mail\Mailtrap;
use App\Mail\EmailNotification;

class MailController extends Controller
{
    /**
     * Send email
     * @return
     */
    public function index(){
      $user = Auth::user();
      Mail::to($user)->send(new EmailNotification());
    }

}

接下来,我创建了一个命令并在那里使用控制器

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Http\Controllers\MailController;

class SendNotifications extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'SendNotifications:notification';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'This will send email';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $mail = new MailController();
        $mail->index();
    }
}

和内核

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
      'App\Console\Commands\SendNotifications'
    ];

    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('SendNotifications:notification')
                 ->everyMinute();
    }

    /**
     * Register the Closure based commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        require base_path('routes/console.php');
    }
}

当我尝试使用web.php中的路由在控制器中发送电子邮件时,它成功向mailtrap.io发送电子邮件,但是当我尝试使用此命令在后台发送时

php artisan SendNotification:notification

我收到了这个错误

Trying to get property of non-object

我不知道为什么它应该成功,因为它只是在控制器中调用了电子邮件或我实现了这个错误

你能指导我吗?

1 个答案:

答案 0 :(得分:1)

因为您在不同的会话上工作。您可能已登录浏览器并为此用户创建了会话,但此命令在您的命令行中不相同。

所以你的问题出现在这一行$user = Auth::user();

如果您在控制台命令中dd($user),您会注意到 $ user 为空

这就是为什么你尝试获取非对象属性错误

的原因