PHP发送邮件错误

时间:2009-04-09 20:54:18

标签: php phpmailer

请帮助我,我是PHP新手,自从过去5个小时后我尝试发送邮件,现在真的很累。感谢。

这是我的代码。我使用的是Gmail帐户。     

include("class.phpmailer.php");
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail             = new PHPMailer();

$body             = $mail->getFile('contents.html');
$body             = eregi_replace("[\]",'',$body);

$mail->IsSMTP();
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port for the GMAIL server

$mail->Username   = "hussaintalha@gmail.com";  // GMAIL username
$mail->Password   = "xxxxxxxx";            // GMAIL password

$mail->AddReplyTo("hussaintalha@gmail.com","First Last");

$mail->From       = "hussaintalha@gmail.com.com";
$mail->FromName   = "First Last";

$mail->Subject    = "PHPMailer Test Subject via gmail";

//$mail->Body       = "Hi,<br>This is the HTML BODY<br>";                      //HTML Body
$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->WordWrap   = 50; // set word wrap

$mail->MsgHTML($body);

$mail->AddAddress("hussaintalha@gmail.com", "John Doe");

$mail->AddAttachment("images/phpmailer.gif");             // attachment

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

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}
?>

当我运行我的文件时,我收到此错误:

  

警告:fopen(contents.html)   [function.fopen]:无法打开   stream:没有这样的文件或目录   d:\ Xampplite文件\ htdocs中\ WebEng \ class.phpmailer.php   在1870号线上

     

警告:fsockopen()   [function.fsockopen]:无法   连接到ssl://smtp.gmail.com:465   (无法找到套接字传输   “ssl” - 你忘了启用它吗?   当你配置PHP?)时   d:\ Xampplite文件\ htdocs中\ WebEng \ class.smtp.php   第122行邮件程序错误:SMTP错误:   无法连接到SMTP主机。

2 个答案:

答案 0 :(得分:4)

您的PHP安装(XAMPP,从外观上看)不支持SSL。确保该行

extension=php_openssl.dll

在你的php.ini中没有 注释掉,重新启动Apache,如果仍然无效,请尝试将PHP目录中的ssleay32.dll和libeay32.dll覆盖(或复制)到Apache的二进制(.exe)目录然后重启Apache。

答案 1 :(得分:4)

首先,当您收到错误消息时,那就太棒了!因为在90%的情况下,您发现其他人也拥有它们,因此您可以在互联网上找到有关此错误消息的大量信息。

因此,当收到您不知道的错误消息时,步骤1始终是谷歌并将其复制粘贴到那里。但是,请删除与您的系统唯一连接的任何路径或其他内容。

然后关于你的错误。特别是xampp light不支持SSL。也许你先尝试一个更简单的sendmail示例。像一个非常小的,然后一步一步地增加它。 当我不知道为什么有些东西不起作用时,这就是我经常做的事情。我从一行开始,看看它做了什么,然后再添加另一行等等。

假设您从这开始,看看它是否有效:

<?php

include("class.phpmailer.php");

$mail             = new PHPMailer();

$mail->IsSMTP();
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port for the GMAIL server
$mail->Username   = "hussaintalha@gmail.com";  // GMAIL username
$mail->Password   = "xxxxxxxx";            // GMAIL password

$mail->From       = "hussaintalha@gmail.com";
$mail->Subject    = "PHPMailer Test Subject via gmail";
$mail->Body       = "Hi, this is a test";           
$mail->AddAddress("hussaintalha@gmail.com", "Hussain");

$mail->send();
?>
哦,顺便说一句。你的邮件来自.com太多了!