我使用phpmailer发送电子邮件。但遇到一些麻烦。
$mail = new PHPMailer();
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.qq.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '100****@qq.com'; // SMTP username
$mail->Password = 'w******'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465; // TCP port to connect to
$mail->setFrom('10****6@qq.com', 'Mailer');
$mail->addAddress('1***65@qq.com', 'Joe User'); // Add a recipient
$mail->addReplyTo('1*****56@qq.com', 'Information');
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
它显示无法发送消息。
邮件程序错误:扩展程序丢失:openssl
我将php.ini ;extension=php_openssl.dll
更改为extension=php_openssl.dll
,但无效。
答案 0 :(得分:0)
您可能需要重新启动Apache才能使php.ini更改生效。
答案 1 :(得分:0)
如果启用扩展程序不起作用,请安装dll或阅读有关openssl here。
的更多信息