묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
폼메일 관련 질문인데요
2003.07.08 12:43
메일이 안보내져요,.ㅠ.ㅠ
이런 메세지만 뜨고요..
Warning: mail() is not supported in this PHP build
in /home/khh/public_html/home2/mail/send.php3 on line 43
소스는요
<?
//#####################################
//#### 파일명 : Zmail ####
//#### 제작사 : http://orir.net ####
//#### 제작자 : orir@orir.net ####
//#### 제작일 : 2003/3/16 ####
//#### 버전 : Zmail2.0 ####
//#####################################
// 창에 이름및 주소를 안적으면 나오는 에러 메세지를 나오게 하는 함수입니다..
function error($text){
echo "
<script language=javascript>
window.alert('$text')
history.go(-1)
</script>";
exit;
}
// 메일 보내기가 성공하거나 실패의 여부를 나오게 하는 함수
function msg($text){
echo "
<script language=javascript>
window.alert('$text')
</script>
<meta http-equiv='refresh' content='0;url=zmail.php'>";
exit;
}
if (!$name) {error('이름을 적어주세요.');} // 이름이 없을때 에러 메세지
if(!ereg("@",$frommail)) {error('보내는 주소를 적어주세요.');} // 보내는 메일주소나 @이 없으면 나오는 에러메세지
if(!ereg("@",$tomail)) {error('받는 주소를 적어주세요.');} // 받는 메일주소나 @이 없으면 나오는 에러메세지
if (!$subject) {error('제목을 적어주세요.');} // 제목을 안적으면 나오는 에러 메세지.
if (!$body) {error('내용을 적어주세요.');} // 내용을 안적으면 나오는 에러 메세지
$mailheaders .= "Return-Path: $frommailrn"; // 메일 헤더
$mailheaders .= "From: $name <$frommail>rn"; // 메일헤더, 이름과 email 주소가 나오게 함..
$result=mail($tomail , $subject , $body , $mailheaders); // 메일 함수
if($result){msg('편지가 성공적으로 보내졌습니다.');} // 성공하면 나오는 메제시
else{error('편지전송에 실패하였습니다.');} // 편지가 전달되지 않으면 나오는 함수
?>
왜서 안되는지 알려주세요..php는 하나도 할 줄 몰라서요...ㅠ
이런 메세지만 뜨고요..
Warning: mail() is not supported in this PHP build
in /home/khh/public_html/home2/mail/send.php3 on line 43
소스는요
<?
//#####################################
//#### 파일명 : Zmail ####
//#### 제작사 : http://orir.net ####
//#### 제작자 : orir@orir.net ####
//#### 제작일 : 2003/3/16 ####
//#### 버전 : Zmail2.0 ####
//#####################################
// 창에 이름및 주소를 안적으면 나오는 에러 메세지를 나오게 하는 함수입니다..
function error($text){
echo "
<script language=javascript>
window.alert('$text')
history.go(-1)
</script>";
exit;
}
// 메일 보내기가 성공하거나 실패의 여부를 나오게 하는 함수
function msg($text){
echo "
<script language=javascript>
window.alert('$text')
</script>
<meta http-equiv='refresh' content='0;url=zmail.php'>";
exit;
}
if (!$name) {error('이름을 적어주세요.');} // 이름이 없을때 에러 메세지
if(!ereg("@",$frommail)) {error('보내는 주소를 적어주세요.');} // 보내는 메일주소나 @이 없으면 나오는 에러메세지
if(!ereg("@",$tomail)) {error('받는 주소를 적어주세요.');} // 받는 메일주소나 @이 없으면 나오는 에러메세지
if (!$subject) {error('제목을 적어주세요.');} // 제목을 안적으면 나오는 에러 메세지.
if (!$body) {error('내용을 적어주세요.');} // 내용을 안적으면 나오는 에러 메세지
$mailheaders .= "Return-Path: $frommailrn"; // 메일 헤더
$mailheaders .= "From: $name <$frommail>rn"; // 메일헤더, 이름과 email 주소가 나오게 함..
$result=mail($tomail , $subject , $body , $mailheaders); // 메일 함수
if($result){msg('편지가 성공적으로 보내졌습니다.');} // 성공하면 나오는 메제시
else{error('편지전송에 실패하였습니다.');} // 편지가 전달되지 않으면 나오는 함수
?>
왜서 안되는지 알려주세요..php는 하나도 할 줄 몰라서요...ㅠ
댓글 3
-
풍월주인
2003.07.08 12:59
-
에지☆Willem
2003.07.08 18:41
맞습니다~ 맞구요~
Warning: mail() is not supported in this PHP build
경고: mail() 은 이 PHP 빌드에서 지원하지 않습니다.
(대충 이런 뜻인듯;;) -
권의혁
2003.07.09 09:06
감 사 합 니 다~~^^
==>mail()이라는 함수를 지원하지 않는 PHP 버전이라는 에러같은데요..