2014-11-21 3 views
-2

웹 사이트 용 이메일 양식을 만들고 있는데 html 코드는 다음과 같습니다.PHP 이메일이 작동하지 않습니다.

 <form class="form" name="htmlform" method="post" action="contact_process.php"> 
     <table width="450px"> 
     </tr> 
     <tr> 
     <td valign="top"> 
      <label for="first_name">First Name *</label> 
     </td> 
     <td valign="top"> 
      <input type="text" name="first_name" maxlength="50" size="30"> 
     </td> 
     </tr> 

     <tr> 
     <td valign="top""> 
      <label for="last_name">Last Name *</label> 
     </td> 
     <td valign="top"> 
      <input type="text" name="last_name" maxlength="50" size="30"> 
     </td> 
     </tr> 
     <tr> 
     <td valign="top"> 
      <label for="email">Email Address *</label> 
     </td> 
     <td valign="top"> 
      <input type="text" name="email" maxlength="80" size="30"> 
     </td> 

     </tr> 
     <tr> 
     <td valign="top"> 
      <label for="telephone">Telephone Number</label> 
     </td> 
     <td valign="top"> 
      <input type="text" name="telephone" maxlength="30" size="30"> 
     </td> 
     </tr> 
     <tr> 
     <td valign="top"> 
      <label for="comments">Comments *</label> 
     </td> 
     <td valign="top"> 
      <textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea> 
     </td> 

     </tr> 
     <tr> 
     <td colspan="2" style="text-align:center"> 
      <input type="submit" value="Submit"> 
     </td> 
     </tr> 
     </table> 
     </form> 
     <p>* Mandatory fields</p> 

아래의 contact_process.php에서 PHP 코드를 시도했지만 지정된 이메일에 양식을 전자 메일로 보내지 않았습니다.

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

    $email_to = "[email protected]"; 

    $email_subject = "Feedback Form Submissions"; 


    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['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"; 


// creating 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); 
?> 

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

<?php 
} 
die(); 
?> 

누군가 코드를 확인하고 내가 잘못했는지 확인할 수 있습니까?

보안 문제에 대해 가능한 경우 발신자와 보안 문자 이미지에 자동 응답을 추가하고 싶습니다.

+1

모든 오류 메시지를 확인? "효과가 없다"는 것은 무엇을 의미합니까? – panther

+0

PHP로'mail()'이 작동하지 않는 이유는 무엇입니까? ** [실제로] (http://stackoverflow.com/questions/8803994/php-mail- 어떤 이유로 작동하지 않습니다) [has] (http://stackoverflow.com/questions/20297703/mail-function-is-not-working-in-php) [been] (http : // stackoverflow. com/questions/23045613/my-php-mail-function-is-not-working) [질문] (http://stackoverflow.com/questions/9883755/php-mail-function-not-sending-mail) [before ] (http://stackoverflow.com/questions/21961821/send-mail-by-php-mail-function) ** 및 (2) 자동 응답 및 (3) 보안 문자를 어떻게 통합 할 수 있습니까? – Terry

+0

@WebDesign 함수 메일의 반환 값을 확인 했습니까? – Riccardo

답변

1

메일을 확인하여 보낼 수 있는지 확인하는 것이 좋습니다. 이것은 다음과 같이 나타납니다.

if (mail ($email_to, $email_subject, $email_message, $headers)) { 
    echo "mail send"; 
} else { 
    echo "failure to send"; 
} 

오류가 있는지를 확인하면 if else 문에서 메일 기능을 실행합니다. 그렇다면 오류가 무엇인지 알아 내기 위해 디버깅해야합니다. 오우에는 몇 가지 변수가 있기 때문입니다. 변수의 서식 문제 일 수 있습니다.

편집

또한, 어쩌면이 나이지만,이 나던 코드에서 나에게 의미합니다.

$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"; 

왜 콘텐츠 형식, 숨은 참조 등의 추가 태그에 대한 귀하의 문자열을 확인 싶어 ... 그리고 아무것도 그것을 대체 할 것이다. 내 말은 ... 처음에는 왜 추가 될 것이며, 어디에서 콘텐츠에 추가 했는가하는 것입니다. 나는 그걸 보지 못했지, 그렇지?

댓글에 복사 된 코드의 앵커를 넣으려는 시도가 잘못 되었더라도 href 속성을 허용하지 않으므로 자동으로 제거됩니다. 코드에서 오류가 발생하여이를 가리키고 코드를 복사하려는 costumer 인 경우 어떻게해야합니까? 이것은 앞으로의 btw와 나의 POV를 생각하고 있습니다.

나는 또한 당신이 이메일 변수가 설정되어있는 경우 bassically 확인 코드 if(isset($_POST['email'])) {의 조각으로 실현 기대합니다 2

편집. 그래서 이메일을 작성하고 실행하면 전체 스크립트가 실행됩니다. 제출 작업에서 더 잘 수행 할 수 있습니다. 당신은 그 이름을 붙이지 않기 때문에 그렇게하고 싶을지도 모릅니다.

<input type="submit" value="Submit"> -><input type="submit" name="SubmitEmail" value="Submit">

는이

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

관련 문제