// plain
- First, check the version of OpenSSL installed on your server. This can be done by running the command
openssl version
from the command line. - If the version is not up to date, update it.
- Check the
php.ini
file to make sure theopenssl
extension is enabled. - Make sure the
SMTP
settings are configured correctly inPHPMailer
. - Test the connection using the
SMTP
class inPHPMailer
:
require 'PHPMailerAutoload.php';
$mail = new PHPMailer();
$mail->isSMTP();
$mail->Host = 'smtp.example.com';
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = 'username';
$mail->Password = 'password';
if (!$mail->smtpConnect()) {
echo 'Connection failed!';
echo '<pre>' . print_r($mail->getError(), true) . '</pre>';
} else {
echo 'Connection successful!';
}
- If the connection fails, check the error message for more information.
- If necessary, consult the PHPMailer documentation for more troubleshooting tips.
onelinerhub: How can I troubleshoot a PHPMailer OpenSSL error?