2015-09-28 40 views
0

我正在嘗試爲ios發送一個phonegap應用程序,它會通過電子郵件將html表單發送給我。我目前託管的PHP文件免費虛擬主機服務和每當我提交表單我得到這個錯誤:使用phpmailer時出錯

致命錯誤:類'SMTP'找不到/home/a2080029/public_html/class.phpmailer.php此線1302

是我的PHP:

<?php 

if(isset($_POST['email'])) { 
    $email_to = "[email protected]"; 
    $email_subject = "New customer requesting information/appointment"; 

    function died($error) { 
     echo "We are very sorry, but there were error(s) found with the form you submitted. "; 
     echo "These errors appear below.<br /><br />"; 
     echo $error."<br /><br />"; 
     echo "Please go back and fix these errors.<br /><br />"; 
     die(); 
    } 

    if(!isset($_POST['first_name']) || 
     !isset($_POST['last_name']) || 
     !isset($_POST['email']) || 
     !isset($_POST['telephone']) || 
     !isset($_POST['comments'])) { 
     died('We are sorry, but there appears to be a problem with the form you submitted.');  
    } 

    $first_name = $_POST['first_name']; // required 
    $last_name = $_POST['last_name']; // required 
    $email_from = $_POST['email']; // required 
    $telephone = $_POST['telephone']; // not required 
    $comments = $_POST['comments']; // required 
    $error_message = ""; 
    $email_exp = '/^[A-Za-z0-9._%-][email protected][A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/'; 

    if(!preg_match($email_exp,$email_from)) { 
     $error_message .= 'The Email Address you entered does not appear to be valid.<br />'; 
    } 

    $string_exp = "/^[A-Za-z .'-]+$/"; 
    if(!preg_match($string_exp,$first_name)) { 
     $error_message .= 'The First Name you entered does not appear to be valid.<br />'; 
    } 
    if(!preg_match($string_exp,$last_name)) { 
     $error_message .= 'The Last Name you entered does not appear to be valid.<br />'; 
    } 
    if(strlen($comments) < 2) { 
     $error_message .= 'The Comments you entered do not appear to be valid.<br />'; 
    } 
    if(strlen($error_message) > 0) { 
     died($error_message); 
    } 
    $email_message = "Form details below.\n\n"; 

    function clean_string($string) { 
     $bad = array("content-type","bcc:","to:","cc:","href"); 
     return str_replace($bad,"",$string); 
    } 

    $email_message .= "First Name: ".clean_string($first_name)."\n"; 
    $email_message .= "Last Name: ".clean_string($last_name)."\n"; 
    $email_message .= "Email: ".clean_string($email_from)."\n"; 
    $email_message .= "Telephone: ".clean_string($telephone)."\n"; 
    $email_message .= "Comments: ".clean_string($comments)."\n"; 
    require("PHPMailerAutoload.php"); 
    $mail = new PHPMailer(); // create a new object 
    $mail->IsSMTP(); // enable SMTP 
    $mail->SMTPDebug = 4; // debugging: 1 = errors and messages, 2 = messages only 
    $mail->SMTPAuth = true; // authentication enabled 
    $mail->SMTPSecure = 'tls'; // secure transfer enabled REQUIRED for GMail 
    $mail->Host = 'smtp.gmail.com'; 
    $mail->Port = 587; 
    $mail->Username = "[email protected]"; 
    $mail->Password = "password"; 
    $mail->From  = "[email protected]"; 
    $mail->AddAddress("[email protected]"); 
    $mail->Subject = $email_subject; 
    $mail->Body  = $email_message; 
    $mail->WordWrap = 50; 
    if(!$mail->Send()) { 
     echo 'Message was not sent.'; 
     echo 'Mailer error: ' . $mail->ErrorInfo; 
    } else { 
     echo 'Message has been sent.'; 
    }?> 

我有class.phpmailer.php和PHPMailerAutoload.php在同一個文件,這個PHP文件。

我對這整個事情真的很陌生,無法弄清楚爲什麼這不會爲我的生活工作。

+1

聽起來就像是沒有正確安裝PHPMailer的,它缺少的SMTP類。 – Barmar

+0

感謝您的回答,它已正確安裝在我的電腦上,但這是一個網絡託管服務,所以聽起來可能就是這樣,我該如何去安裝它? – Sturdyplum

+0

請與虛擬主機提供商聯繫。 – Barmar

回答

1

您不必安裝PHPmailer,您只需將PHPmailer的類文件複製到您的服務器,然後將其包含在您的代碼中。

將以下三個文件複製到您的服務器。您可以從here

class.phpmailer.php 
class.smtp.php 
PHPMailerAutoload.php 

下載文件的所有剩餘看起來不錯

+0

謝謝,我沒有添加class.smtp.php文件whoops。然而,當我嘗試提交表單時,頁面只是等待一段時間,然後表示錯誤沒有收到數據,對下一個問題我猜XD – Sturdyplum