PHPMailer 报错 Could not instantiate mail function.

test0531 2014-03-16 08:47:00
我在phpmailer官网下载的最新的库,根据里面自带的test下的测试文件配置的,php.ini里面也支持sockets。上网查了许多资料也都试了还是不行,故在此请教各位大神指点指点,不胜感激!!!

<?php
/**
* Simple example script using PHPMailer with exceptions enabled
* @package phpmailer
* @version $Id$
*/

require '../class.phpmailer.php';

try {
$mail = new PHPMailer(true); //New instance, with exceptions enabled

$body = file_get_contents('contents.html');
$body = preg_replace('/\\\\/','', $body); //Strip backslashes

$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = 25; // set the SMTP server port
$mail->Host = "smtp.163.com"; // SMTP server
$mail->Username = "****@163.com"; // SMTP server username
$mail->Password = "***"; // SMTP server password

//$mail->IsSendmail(); // tell the class to use Sendmail

$mail->AddReplyTo("***@163.com","First Last");

$mail->From = "***@163.com";
$mail->FromName = "phpmailer";

$to = "***@qq.com";

$mail->AddAddress($to);

$mail->Subject = "First PHPMailer Message";

$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->WordWrap = 80; // set word wrap

$mail->MsgHTML($body);

$mail->IsHTML(true); // send as HTML

$mail->Send();
echo 'Message has been sent.';
} catch (phpmailerException $e) {
echo $e->errorMessage();
}
?>

...全文
997 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
test0531 2014-03-17
  • 打赏
  • 举报
回复
引用 1 楼 xuzuning 的回复:
给出你的下载地址 可能是要求的 php 版本太高了吧?
非常感谢,的确是我下载的phpmailer版本太高导致的,我现在了个5.1的yiqieok
ohmygirl 2014-03-16
  • 打赏
  • 举报
回复
//$mail->IsSendmail(); 这个去掉的话默认是使用系统的mail函数发送邮件的。会不会是这个原因。
xuzuning 2014-03-16
  • 打赏
  • 举报
回复
给出你的下载地址 可能是要求的 php 版本太高了吧?
test0531 2014-03-16
  • 打赏
  • 举报
回复
引用 2 楼 ohmygirl 的回复:
//$mail->IsSendmail(); 这个去掉的话默认是使用系统的mail函数发送邮件的。会不会是这个原因。
这个要去的,否则回报其他的错
test0531 2014-03-16
  • 打赏
  • 举报
回复
引用 1 楼 xuzuning 的回复:
给出你的下载地址 可能是要求的 php 版本太高了吧?
http://code.google.com/a/apache-extras.org/p/phpmailer/downloads/list 最后一个是我下载的,开始是在Linux下执行的,报这个错后来才换到windows下的

21,886

社区成员

发帖
与我相关
我的任务
社区描述
从PHP安装配置,PHP入门,PHP基础到PHP应用
社区管理员
  • 基础编程社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧