时间:2021-07-01 10:21:17 帮助过:6人阅读
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();}?>
给出你的下载地址
可能是要求的 php 版本太高了吧?
//$mail->IsSendmail();
这个去掉的话默认是使用系统的mail函数发送邮件的。会不会是这个原因。
给出你的下载地址
可能是要求的 php 版本太高了吧?
http://code.google.com/a/apache-extras.org/p/phpmailer/downloads/list
最后一个是我下载的,开始是在Linux下执行的,报这个错后来才换到windows下的
//$mail->IsSendmail();
这个去掉的话默认是使用系统的mail函数发送邮件的。会不会是这个原因。
这个要去的,否则回报其他的错
给出你的下载地址
可能是要求的 php 版本太高了吧?
非常感谢,的确是我下载的phpmailer版本太高导致的,我现在了个5.1的yiqieok