2014-01-24 2 views
1

양식이 전자 메일을 생성하지 않고 그냥 빈 페이지로 리디렉션됩니다. 내 서버의 php라는 폴더에 .php 양식이 있습니다.html php send form은 이메일을 보내지 않습니다.

감사합니다.

여기 여기 내 html 코드

 <form id="form" method="post" action="php/send_form_email.php"> 
     <fieldset> 
     <label><strong>Name:</strong> 
      <input type="text" value=""> 
     </label> 
     <label><strong>Email:</strong> 
      <input type="text" value=""> 
     </label> 
     <label><strong>Phone:</strong> 
      <input type="text" value=""> 
     </label> 
     <label><strong>Message:</strong> 
      <textarea></textarea> 
     </label> 
     <div class="btns"><a href="#" class="link">Clear</a><a href="php/send_form_email.php" class="link">Send</a></div> 
     </fieldset> 
    </form> 

입니다 내가 사용하고 PHP 코드입니다 :

<?php 

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



// EDIT THE 2 LINES BELOW AS REQUIRED 

$email_to = "#@#.com"; 

$email_subject = "havok security contact form"; 





    function died($error) { 

    // your error code can go here 

    echo "We are very sorry, but there was an error 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['phone']) || 

    !isset($_POST['message'])) { 

    died('We are sorry, but there appears to be a problem with the form you submitted.');  

} 



$first_name = $_POST['name']; // required 

$email_from = $_POST['email']; // required 

$telephone = $_POST['phone']; // not required 

$comments = $_POST['message']; // 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,$name)) { 

    $error_message .= 'The Name you entered does not appear to be valid.<br />'; 

    } 


    if(strlen($message) < 2) { 

    $error_message .= 'The Message 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($first_name)."\n"; 

$email_message .= "Email: ".clean_string($email_from)."\n"; 

$email_message .= "Phone: ".clean_string($telephone)."\n"; 

$email_message .= "Message: ".clean_string($comments)."\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 

    } 

    ?> 
+0

'php/send_form_email.php.php'는 양식 HTML 파일에 상대적인 PHP 파일의 정확한 경로입니까? 파일에 두 개의 .php가 있습니다. 맞습니까? – Luceos

+0

예 우분투 서버에서 내 www 폴더에 webmin을 사용하고 있습니다. 내 php 폴더 php/send_form_email.php는 내 PHP 양식의 정확한 경로입니다. 죄송합니다. 나는 질문 게시글에 언급 했어야합니다. – HaVoK

+0

오우. 지금은 확장에 .php.php가 중복되어 있습니다. 나는 바보처럼 느껴진다. imma는 그것을 고치고 그것을 시험하고 무슨 일이 일어나는가를 볼 것입니다. EDIT : 나는 두번의 확장을 고쳤고 그래서 나는 스크립트에서 뭔가 잘못했다고 짐작합니다. – HaVoK

답변

2

이메일에서 입력 유형은 "전자 메일"이라는 이름의 속성을 가질 필요가있다. PHP 스크립트는 $ _POST [ "email"]가 설정되어 있는지보고자합니다. 그럼,이 작동합니다 :

+0

입니다. 각 입력 유형에 대해 아무런 가치도 남기지 않는다면 괜찮습니까? im 내 HTML을 편집하려고하고 시도해보십시오. – HaVoK

+0

value 속성은 텍스트 상자의 기본값입니다. 가치있는 것을 입력하면 텍스트 상자에 표시됩니다. 텍스트 상자에 입력 한 내용은 "value"속성을 덮어 씁니다. 그래서, 그것은 중요하지 않습니다. – SyntaxLAMP

+0

괜찮 았던 것 나는 내가 확실하지 않다라고 생각했다. 그래서 나는 나의 html를 편집했다. 그리고 나는 아직도 어떤 이메일도 얻지 않았다. 실제로 우분투 상자에 메일 서버를 설치하여 텍스트 상자에 지정된 전자 메일로 전자 메일을 보내야합니까? – HaVoK

관련 문제