Home >Backend Development >PHP Tutorial >SMTP Connect() Failed in PHPmailer: How to Fix the Error When Sending Emails with Google?
SMTP Connect() Failed in PHPmailer: A Detailed Solution
Sending emails using PHPmailer can be a straightforward task, but sometimes you may encounter errors such as "Mailer Error: SMTP connect() failed." This error can occur when attempting to connect to an SMTP server, typically due to incorrect configuration or security restrictions.
The problem you described is related to a change in Google's authorization mechanism for its SMTP server. Google now uses XOAUTH2 authentication, which requires additional steps to connect successfully.
Solution:
Visit https://www.google.com/settings/security/lesssecureapps and turn on "Allow less secure apps." This allows your application (PHPmailer) to interact with Google's SMTP server.
Instead of SSL over port 465, switch to TLS over port 587. This is the recommended protocol for XOAUTH2 authentication.
In your PHPmailer code, make sure to use the following settings:
By implementing these changes, your PHPmailer code should be able to connect successfully to the SMTP server and send emails without the "SMTP connect() failed" error.
Remember, always ensure proper security practices, such as enabling two-factor authentication for your email account and creating strong passwords for the mailserver.
The above is the detailed content of SMTP Connect() Failed in PHPmailer: How to Fix the Error When Sending Emails with Google?. For more information, please follow other related articles on the PHP Chinese website!