我一直坚持这个错误,当我使用localhost时,我的网站会顺利发送邮件,但当我将其上传到实时服务器时,我收到了这个错误。
PHP
Severity: Warning
Message: fsockopen(): unable to connect to ssl://smtp.gmail.com:465 (Network is unreachable)
Filename: libraries/Email.php
Line Number: 2055
以下是来自print_debugger()
的错误消息遇到以下SMTP错误:101网络无法访问 无法使用PHP SMTP发送电子邮件。您的服务器可能未配置为使用此方法发送邮件。
以下是我的电子邮件地址:email.php
<?php
$config['protocol'] = "smtp";
$config['smtp_host'] = "ssl://smtp.gmail.com";
$config['smtp_port'] = 465;
$config['charset'] = "utf-8";
$config['newline'] = "\r\n";
$config['mailtype'] = "html";
$config['smtp_user'] = "**********@gmail.com";
$config['smtp_pass'] = "**********";