폼메일 발송시 메일이 안오는 문제

폼메일 발송시 메일이 안오는 문제

QA

폼메일 발송시 메일이 안오는 문제

본문

기존 홈페이지 폼메일 발송시 메일이 정상적으로 오는데

 

 그 소스를 그대로 새로 제작한 홈페이지에 쓰는데

 

새로 제작한 홈페이지는 메일 발송 완료메세지는 나오는데 메일은 안오네요

 

그누 기본 메일발송은 정상적으로 됩니다.

어떤 문제인가요..?ㅠㅠ

 

이 질문에 댓글 쓰기 :

답변 1

그누 기본 메일이라면 관리자 페이지 테스트 메일이 발송된다는 말인가요?

그렇다면 폼메일쪽 소스 부분이 문제라고 봐야겠네요.

폼메일 발송 부분을 보지 않고는 알 수 없겠습니다.

<meta charset="utf-8">
<?php
if(isset($_POST['email'])) {


$email_to = "*** 개인정보보호를 위한 이메일주소 노출방지 ***";
$email_subject = "[폼메일] 문의사항입니다.";
$email_subject = '=?UTF-8?B?'.base64_encode($email_subject).'?=';



    function died($error) {
        // your error code can go here
        echo "<script> alert('메일발송을 실패하였습니다.');";
echo "history.go(-1);";
echo "</script>";
        die();
    }

    // validation expected data exists
    if(!isset($_POST['first_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
    $email_from = $_POST['email']; // required
    $telephone = $_POST['telephone']; // not required
    $comments = $_POST['comments']; // required

    $error_message = "";
    $email_exp = '/^[A-Za-z0-9._%-]+@[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 />';
  }

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

    function clean_string($string) {
      $bad = array("content-type","bcc:","to:","cc:","href");
      return str_replace($bad,"",$string);
    }

    $email_message .= "이름 : ".clean_string($first_name)."\n\n";
    $email_message .= "이메일 : ".clean_string($email_from)."\n\n";
    $email_message .= "연락처 : ".clean_string($telephone)."\n\n";
    $email_message .= "문의사항 : ".clean_string($comments)."\n\n";


// create email headers
$headers = 'From: '.$email_from;
// 제목이 깨질경우 아래 캐릭터셋 적용

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

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

<script>
alert ("메일이 발송되었습니다.\n빠른 시일안에 답변드리겠습니다.");
location.href='/';
</script>

<?php
}
?>

답변을 작성하시기 전에 로그인 해주세요.
전체 207
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT