2013-09-21 63 views
0

我试图从godaddy smtp邮件时出现以下错误。phpmailer不工作在godaddy,也不在邮件()工作

我收到以下错误 警告:require_once(class.phpmailer.php)一次function.require]:未能打开流:在文件名中没有这样的文件或目录上线60

致命错误: require_once()[function.require]:无法打开所需 'class.phpmailer.php'(include_path中= ':在/ usr /本地/ php5_3/LIB/PHP')

<?php 
if (isset($_POST['email'])) 
//if "email" is filled out, send email 
    { 
    //send email 

require_once("class.phpmailer.php"); 
$mail = new PHPMailer(); 
//$mail->IsSMTP(); 
$mail->SMTPDebug = 1; // 1 tells it to display SMTP errors and messages, 0 turns off all errors and messages, 2 prints messages only. 
$mail->SMTPAuth = true; 
$mail->SMTPSecure = "https"; 
$mail->Host = "smtpout.asia.secureserver.net"; 
$mail->Port = 25; 

$mail->Username = "[email protected]" ; // this is email on godaddy account 
$mail->Password = "password"; 

$mail->From = "[email protected]" ; 
$mail->FromName = "some name" ; 

$mail->AddAddress($_POST['email'], $name); 
//$mail->AddReplyTo(“Email Address HERE”, “Name HERE”); // Adds a “Reply-to” address. Un-comment this to use it. 
$mail->Subject = "site no. ".$_POST['site1']." ".$_POST['status']." for you " ; 
$mail->Body = " Hi, your site with no. ".$_POST['site1']." in phase ".$_POST['phase1']." has been ".$_POST['status'] ; 

if ($mail->Send() == true) { 
echo "The message has been sent"; 
} 
else { 
echo "The email message has NOT been sent for some reason. Please try again later"; 
echo "Mailer error: " . $mail->ErrorInfo; 
} 


    } 

?> 

回答

2

It seems the your PHP script is unable to locate the class.phpmailer.php file

  • 尝试复制class.phpmailer.php文件到在同一目录中的PHP脚本的

  • 指定放在require_once

If at all you don't happen to have the class.phpmailer.php file :

  1. 首先下载它的完整路径class.phpmailer.php来自PHPMailer网站
  2. 将其复制到脚本可访问的位置
  3. 在require_once中指定其路径