laravel 5.4: sending email from localhost not working

前端 未结 4 1351
失恋的感觉
失恋的感觉 2020-12-20 20:47

I want to sent emails from my localhost with laravel 5.4. It is showing me the following error: screenshot of the error

This is my .env file

MAIL_DRI         


        
4条回答
  •  一生所求
    2020-12-20 21:31

    Route::get('sendemail', function () {
    
        $data = array(
            'name' => "Learning Laravel",
        );
    
        Mail::send('welcome', $data, function ($message) {
    
            $message->from('ashokchavda193@gmail.com', 'Learning Laravel');
    
            $message->to('ashokchavda193@gmail.com')->subject('Learning Laravel test email');
    
        });
    
        return "Your email has been sent successfully";
    
    });
    

提交回复
热议问题