I have a Laravel Mail driver setup to print to a log file:
'driver' => env('MAIL_DRIVER', 'log'),
When sending mail, however, I get a swiftmail authentication error:
The expected response code is 250, but received the code "530" with the message "530 5.7.1 Authentication Required
vendor\\swiftmailer\\swiftmailer\\lib\\classes\\Swift\\Transport\\AbstractSmtpTransport.php
line 383 \ "> AbstractSmtpTransport.php line 383
530 5.7.1 Authentication required
Is there any other parameter that I need to set? Why is he trying to use swiftmailer?
source
share