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
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";
});