[Solved] Error throwing while sending an email using laravel [closed]
You can check your log. If it show the SwiftMailer was trying to create cache in default /tmp folder : To solve the issue, change the TMPDIR environment variable in the boot() method of app/Providers/AppServiveProvider.php. /** * Bootstrap any application services. * * @return void */ public function boot() { /** * Somehow PHP is … Read more