2014-06-12 84 views
1

我試圖從我的網站發送電子郵件,我輸入了正確的名稱和電子郵件,但沒有發送。 可以幫我嗎?通過php發送郵件,爲什麼不工作?

URL正在被解析,而且html很好地與php通信。 我把這個線

echo $_POST["userName"].' y '; 

//(to know if the name is getting to the php) 

echo $_POST["userEmail"]; 

//(to know if the email is getting to the php) 

,它的正常工作......也許錯誤是在郵件線什麼的。

這是我的PHP代碼

elseif ($page_name=='contact-post.html') { 
    if($_POST["userName"]!='' && $_POST["userEmail"]!=''){ 
     echo $_POST["userName"].' y '; 
     //(to know if the name is getting to the php 
     echo $_POST["userEmail"]; 
     //(to know if the email is getting to the php 
     $nombre = $_POST["userName"]; 
     $correo = $_POST["userEmail"]; 
     $asunto = "Mensaje de ".$nombre; 
     $mensaje = $_POST["userMsg"]; 
     $correoMarsur = "[email protected]"; 
      if(mail($correoMarsur,$asunto,$mensaje,$correo)){ 
      echo ("<SCRIPT LANGUAGE='JavaScript'> 
      window.alert('Mensaje enviado') 
      window.location.href='http://page.cl'; 
      </SCRIPT>"); 
      } 
      else{ 
      echo ("<SCRIPT LANGUAGE='JavaScript'> 
      window.alert('Imposible enviar su mensaje') 
      window.location.href='http://page.cl'; 
      </SCRIPT>"); 
      } 
    } 
    else{ 
     echo ("<SCRIPT LANGUAGE='JavaScript'> 
      window.alert('Ingrese Nombre y Correo') 
     window.location.href='http://page.cl'; 
      </SCRIPT>");  

    } 
} 

,這是我的HTML代碼

<div class="form">    
     <!--<form method="post" action="/index.php/contact-post.html"> --> 
      <form method="post" action="../index.php/contact-post.html"> 
       <input name="userName" id="userName" type="text" class="textbox" placeholder="Nombre*" /> 
       <input name="userEmail" id="userEmail" type="text" class="textbox" placeholder="Email*" /> 
       <div class="clear"> </div> 
       <div> 
        <textarea name="userMsg" id="userMsg" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Mensaje* ';}">Mensaje*</textarea> 
       </div> 
       <div class="submit"> 
        <input type="submit" value="Enviar " /> 
       </div> 
      </form> 
     </div> 

和郵件布爾變量返回false,我該如何解決呢?

+0

你檢查error.log中? –

+0

你怎麼知道這不起作用?一個錯誤,或者你只是你沒有收到任何郵件?也許你需要檢查你的郵件服務器配置,你在使用什麼操作系統? – HaSuKrOnOs

+0

@HaSuKrOnOs我使用Ubuntu,功能郵件返回''FALSE'' – cheloncio

回答

0
//SEND MAIL FUNCTION 
function sendMail($to, $subject, $body, $headers) 
{ 

if (mail($to, $subject, $body, $headers)) { 
$returnMessage = "Success"; 
} 

else { 
$returnMessage = "Failed"; 
} 

return $returnMessage; 
}  

//SET YOUR POST VARIABLES HERE 

$name = ($_POST['userName']); 
$email = ($_POST['userEmail']); 

//SET YOUR EMAIL DETAILS HERE, HOWEVER THIS CAN BE PASSED IN FROM ELSEWHERE, HENSE THE FUNCTION 
$to = "[email protected]"; 
$subject = "Some subject"; 
$body = ("Name: " . $name . "\nEmail Address: " . $email . "\nSome other text you may want in your subject etc"); 
$headers = 'From: [email protected]' . "\r\n" . 
    'Reply-To: [email protected]'; 


// CALL FUNCTION 

sendMail($to, $subject, $body, $headers); 

使用函數來提高代碼的可重用性是一個很好的做法。這個郵件腳本現在不僅可以用於這種聯繫表單,還可以節省您重新編寫整個事情的時間。

如果這不起作用(我已經測試過它並且工作正常),它可能是您的服務器SendMail,要檢查這是否已啓用,您可以創建一個PHPInfo並將其上傳到您的FTP以檢查是否啓用了sendmail 。

PHP信息:

<? phpinfo() ?> 

我希望這有助於 丹

1

您已將用戶電子郵件放入mail()函數的additional_headers參數插槽中,這就是爲什麼它返回false。

這是你的參數,你必須填寫:

bool mail (string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]]) 

例如:

mail($correoMarsur,$asunto,$mensaje); 

這應該工作,除非你有你的變量奇怪的數據。