PHP mail()함수 사용시 에러가 뜹니다....
※ 필수입력정보 ※
▷ 제품버젼 : Nmail PHP최신
▷ 오류발생 메뉴/주소 : http://whk.kr/bbs/loginpage.php
▷ 에러메세지 :
Warning: mail() [function.mail]: Failed to Receive in C:\jaaaj\users\hosting\www\bbs\lib.php on line 976
메일 발송 에러
▷ 질문내용 :
제로보드 비밀번호 찾기 기능을 사용시 위와같은 메일전송에 에러가 뜹니다...ㅠㅠ
http://whk.kr/bbs/loginpage.php -> 비밀번호찾기 -> 메일:****@****/ 주민번호:***-****-****001
http://mail.whk.kr/ 에서 관리자 아이디로 로그인한후 [메일서버관리 >> 메일 발송 테스트]에 접속해보니 아래와 같이 정상적으로 사용가능하다고 나오네요.
----------------------------------------------------------------------------
테스트 메일을 보낼 주소(*)
발송 결과 [성공]
PHP mail() 함수를 이용해서 발송하던 프로그램에서도 정상적인 메일발송이 가능합니다.
----------------------------------------------------------------------------
에러메세지에서 나온대로 bbs\lib.php을 확인해보니 아래와 같았습니다.
----------------------------------------------------------------------------
954>> // 메일 보내는 함수
955>> function zb_sendmail($type, $to, $to_name, $from, $from_name, $subject, $comment, $cc="", $bcc="") {
956>> $recipient = "$to_name <$to>";
957>>
958>> if($type==1) $comment = nl2br($comment);
959>>
960>> $headers = "From: $from_name <$from>\n";
961>> $headers .= "X-Sender: <$from>\n";
962>> $headers .= "X-Mailer: PHP ".phpversion()."\n";
963>> $headers .= "X-Priority: 1\n";
964>> $headers .= "Return-Path: <$from>\n";
965>>
966>> if(!$type) $headers .= "Content-Type: text/plain; ";
967>> else $headers .= "Content-Type: text/html; ";
968>> $headers .= "charset=euc-kr\n";
969>>
960>> if($cc) $headers .= "cc: $cc\n";
971>> if($bcc) $headers .= "bcc: $bcc";
972>>
973>> $comment = stripslashes($comment);
974>> $comment = str_replace("\n\r","\n", $comment);
975>>
976>> return mail($recipient , $subject , $comment , $headers); // [ PHPmail()함수 에러가 뜬 곳 ]
977>>
978>> }
----------------------------------------------------------------------------
무엇이 문제인가요?
도움 부탁드립니다.ㅠㅠ
이전 글 | nmail php 공개버전을 사용하는데요~ 1 | 한*영 | 2007.11.06 |
---|---|---|---|
다음 글 | 첨부파일에서 파일명이 한글일때 발송오류 1 | 김*일 | 2007.11.05 |