首先必须打开 fsockopen 函数
在主机管理后台->高级环境设置 -> PHP.ini 设置 -> PHP函数设置 -> 启用 fsockopen
500内部服务器错误
1 2 |
require_once('./../phpmailer/class.phpmailer.php');//phpmail require_once('./../phpmailer/class.smtp.php');//phpmail |
路径前面一定要加 ” . ”
页面显示空白 或 提示:发送失败:Extension missing: openssl
1 2 |
$mail->SMTPSecure = "ssl"; // SMTP 安全协议 $mail->Port = 465; // SMTP服务器的端口号 |
改为:
1 2 |
//$mail->SMTPSecure = "ssl"; // 不使用SSL $mail->Port = 25; // SMTP服务器的端口号 |
文章评论 1
Atom 发表于2017-04-06 22:18 |
感谢,解决了我困扰已久的问题!