我在本地使用PHPMailer,沿着Apache和PHP。当我测试我的SSL配置和我的cacts时,我得到
default_cert_file = C:\Program Files\Common Files\SSL/cert.pem
default_cert_file_env = SSL_CERT_FILE
default_cert_dir = C:\Program Files\Common Files\SSL/certs
default_cert_dir_env = SSL_CERT_DIR
default_private_dir = C:\Program Files\Common Files\SSL/private
default_default_cert_area = C:\Program Files\Common Files\SSL
ini_cafile =
ini_capath =
然后我就知道了
var_dump(fsockopen("smtp.gmail.com", 465, $errno, $errstr, 3.0));
var_dump($errno);
var_dump($errstr);
我得到了
fsockopen resource(2) of type (stream) int(0) string(0) ""
在我的php.ini
中,我在curl
部分有curl.cainfo = C:/php/cacert.pem
,它工作。
但是当我尝试使用PHPMailer从localhost发送邮件时,我不断收到
SSL operation failed with code 1. OpenSSL Error messages:error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed
Failed to enable crypto
unable to connect to ssl://smtp.gmail.com:465 (Unknown error)
我还去了SMTP中使用的帐户,在https://accounts.google.com/DisplayUnlockCaptcha
并启用它.和https://myaccount.google.com/lesssecureapps?pli=1
和启用安全性较低的应用程序。我猜这是一个SSL错误,而不是PHPMailer。坦率地说,我很困惑,不知道如何解决它。请原谅我的无知,任何关于哪里出了问题以及如何修复它的帮助,都将是伟大的。
PS,这是我发邮件的php文件。谢谢你
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'C:/php/PHPMailer/src/Exception.php';
require 'C:/php/PHPMailer/src/PHPMailer.php';
require 'C:/php/PHPMailer/src/SMTP.php';
$mail = new PHPMailer(true);
try {
$mail->SMTPDebug = 3;
$mail->isSMTP();
$mail->Host = 'smtp.gmail.com';
$mail->SMTPAuth = true;
$mail->Username = 'slevin@gmail.com';
$mail->Password = 'secret';
$mail->SMTPSecure = 'ssl';
$mail->Port = 465;
//Recipients
$mail->setFrom('slevin@gmail.com');
$mail->addAddress('jacob@gmail.com');
//Content
$mail->isHTML(true);
$mail->Subject = 'subject';
$mail->Body = 'HTML message body <b>in bold!</b>';
$mail->AltBody = 'body in plain text';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
}
?>
更新
当我尝试使用$mail->SMTPSecure = 'ssl';
和$mail->Port = 465;
时,我得到
2017-10-01 13:04:25 Connection: opening to ssl://smtp.gmail.com:465, timeout=300, options=array()
2017-10-01 13:04:26 Connection failed. Error #2: stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages:error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed [C:\php\PHPMailer\src\SMTP.php line 324]
2017-10-01 13:04:26 Connection failed. Error #2: stream_socket_client(): Failed to enable crypto [C:\php\PHPMailer\src\SMTP.php line 324]
2017-10-01 13:04:26 Connection failed. Error #2: stream_socket_client(): unable to connect to ssl://smtp.gmail.com:465 (Unknown error) [C:\php\PHPMailer\src\SMTP.php line 324]
2017-10-01 13:04:26 SMTP ERROR: Failed to connect to server: (0)
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Message could not be sent.Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
当我尝试使用$mail->SMTPSecure = 'tls';
和$mail->Port = 587;
时,我得到
2017-10-01 13:07:20 Connection: opening to smtp.gmail.com:587, timeout=300, options=array()
2017-10-01 13:07:21 Connection: opened
2017-10-01 13:07:21 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP l4sm5217189wrb.74 - gsmtp
2017-10-01 13:07:21 CLIENT -> SERVER: EHLO localhost
2017-10-01 13:07:21 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [85.75.196.114]250-SIZE 35882577250-8BITMIME250-STARTTLS250-ENHANCEDSTATUSCODES250-PIPELINING250 SMTPUTF8
2017-10-01 13:07:21 CLIENT -> SERVER: STARTTLS
2017-10-01 13:07:21 SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
2017-10-01 13:07:21 Connection failed. Error #2: stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages:error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed [C:\php\PHPMailer\src\SMTP.php line 403]
SMTP Error: Could not connect to SMTP host.
2017-10-01 13:07:21 CLIENT -> SERVER: QUIT
2017-10-01 13:07:21 SERVER -> CLIENT:
2017-10-01 13:07:21 SMTP ERROR: QUIT command failed:
2017-10-01 13:07:21 Connection: closed
SMTP Error: Could not connect to SMTP host.
Message could not be sent.Mailer Error: SMTP Error: Could not connect to SMTP host.
3条答案
按热度按时间rjee0c151#
刚刚有相同的错误信息,可能您也有相同的问题:
stream_context_create
和stream_socket_client
运行相同的请求通过返回的cURL测试相同的域:
curl: (60) SSL certificate problem: certificate is not yet valid
结果我运行PHP和cURL的虚拟机出现了11天的错误(12月11日而不是12月22日)。
通过固定计算机/虚拟机的日期(使用
ntp
、ntpdate-debian
等),证书测试现在可以正常运行,无论是cURL命令行还是PHP。polkgigr2#
我在我的Windows开发机器上得到这个错误。我反复检查了证书的有效性。他们看起来很好。
测试:
产生了一些令人惊讶的结果:
我的防病毒软件妨碍了我的工作,也许是因为我自己签发的证书过期了。一旦我关闭了防病毒,发送电子邮件就很好了。
这当然不是一个包罗万象的解决方案,但它可能会帮助一些人。
mw3dktmi3#
我最近在一个新的Windows IIS服务器上遇到了这个问题。cURL调用是从一个批处理脚本调用我自己的域,这两个脚本都在同一台服务器上运行。
我补充道
到主机文件,我忘记删除它时,我改变了公共DNS。
服务器在Cloudflare后面,所以我的cURL得到的是CF源代码证书,而不是Cloudflare提供的真实的证书。
删除hosts条目解决了问题。