Answers for "expected response code 250 but got code "530", with message "530 5.7.0 authentication required " /var/www/adv-tech/vendor/swiftmailer/swiftmailer/lib/classes/swift/transport/abstractsmtptransport.php"

PHP
-1

Expected response code 250 but got code "530", with message "530 Must issue a STARTTLS command first. "

//encrytion should be set while using email library
$transport = (new Swift_SmtpTransport($smtp_server, $smtp_port))
                        ->setUsername($smtp_username)
                        ->setPassword($smtp_password)
                        ->setEncryption('tls');  //important to set encryption here.
Posted by: Guest on October-11-2021

Code answers related to "expected response code 250 but got code "530", with message "530 5.7.0 authentication required " /var/www/adv-tech/vendor/swiftmailer/swiftmailer/lib/classes/swift/transport/abstractsmtptransport.php"

Browse Popular Code Answers by Language