I've never configured a Laravel mail settings before. On development, you know, it works but on production, I'm getting internal error 500.
In my mail controller, this is giving the error:
[..]
Mail::to($toEmail)->send(new Support($support));
I've looked in storage/logs/
and no logs are there. I now assume I'm missing a php module? My .env
: MAIL_DRIVER=smtp
Im using Ubuntu 18 with php 7.2 and nginx.
Also, why am I not seeing the log files?
Thanks