0

私は自分のウェブサイトにフォームを持っています:

 <form name="contact" action="contact.php" method="post">
      <label for="name">Name:</label><br/><input type="text" name="name" id="name"><br/>
      <label for="email">Email:</label><br/><input type="text" name="email" id="email"><br/>
      <label for="comment">Question:</label><br/><textarea name="comment" id="comment"></textarea><br/>
      <input type="submit" value="Send" id="submit">
      </form>

これは、データを送信するスクリプトです。

    <?php
header("Refresh: 3;url=http://www.xyz.com/");

if(isset($_POST['email'])) {

    $email_to = "xxxx@gmail.com";
    $email_subject = "Enquiry";


    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['comment'])){
        died('We are sorry, but there appears to be a problem with the form you submitted.');       
    }

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

    $error_message = "";
    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(!preg_match($email_exp,$email)) {
    $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
  }

  if(strlen($comment) < 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 .= "Name: ".clean_string($name)."\n";
    $email_message .= "Email: ".clean_string($email)."\n";
    $email_message .= "Comment: ".clean_string($comment)."\n";


// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);  
?>

<!-- include your own success html here -->

Thank you for contacting us. We will be in touch with you very soon.


<?php
}
?>

何らかの理由で、スクリプトはメッセージが正常に送信されたと出力しますが、受信トレイを確認すると新しいメールはありません。何が起こっているのかわからない、誰か助けてくれる?

4

1 に答える 1

3

メール機能でエラーがオフになっています

 @mail($email_to, $email_subject, $email_message, $headers);  

これから削除@し、単純な場合を追加します

if(mail($email_to, $email_subject, $email_message, $headers))
{
  echo 'mail was sent'; //success message here
}
else
{
  echo 'there were errors during sending mail'; //error message there
}

どのようなエラーが発生したかがわかったら、それらを削除できます。SMTP サーバーの構成に問題がある可能性があります。

php.ini で mail() 関数に影響するいくつかの設定を行うことができます

詳しくはこちらをご覧ください。

さらに、このThank you for contacting us. We will be in touch with you very soon.メッセージは常に表示され、何かが間違っているかどうかはチェックされず、表示されるだけです。

于 2013-06-10T16:00:37.680 に答える