2011-06-23 19 views
2

これに何か問題があると誰も見ることができますか?私は間違いなく、メールを受け取ることはありません。一行のみと簡単なPHPメールでメールを送信しない

<?php 
if(isset($_POST['email'])) { 

    // EDIT THE 2 LINES BELOW AS REQUIRED 
    $email_to = "[email protected]"; 
    $email_subject = "Email sent through crankapps website"; 

    function died($error) { 
     // your error code can go here 
     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(); 
    } 

    // validation expected data exists 
    if(!isset($_POST['name']) || 
     !isset($_POST['email']) || 
     !isset($_POST['message'])) { 
     died('We are sorry, but there appears to be a problem with the form you submitted.');  
    } 

    $name = $_POST['name']; // required 
    $email = $_POST['email']; // required 
    $message = $_POST['message']; // required 

    $error_message = ""; 
    $email_message = "Form details below.\n\n"; 

    $email_message .= "Name: ".clean_string($name)."\n"; 
    $email_message .= "Email: ".clean_string($email)."\n"; 
    $email_message .= "Message: ".clean_string($message)."\n"; 


// create email headers 
$headers = "From: ". $name . " <" . $email . ">\n."; 
mail($email_to, $email_subject, $email_message, $headers); 
?> 

答えて

3

まず、テスト:

<?php 
    mail('[email protected]', 'test email', 'this is a test'); 
?> 

チャンスはこれが動作しないことがあります。

あなたのsmtp設定を見つけて、あなたのphp.iniのsmtp設定がそれにマッチするかどうか確認してください。あなたは、SSLなど

+1

良いアドバイスのおかげのようなより多くのSMTP設定を使用することができますphpmailerので

テイクの外観。私のメールボックスがいっぱいだったことがわかった! :) –

関連する問題