묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
꼭좀 갈켜주세요 부탁입니다. 폼메일에 관한건데요
2005.01.12 03:24
저는php를 거의 모르는 초보인데요 제로보드사이트에 나오는 설명을
듣고 폼메일php파일을 만들어봤습니다.
다음은 sendmail.php라는 파일을 제가 만든건데요
email.html에서 폼을 만들어 action="sendmail.php으로 해놨거든요
근데 메일이 가지를 않네요
어디가 틀린지 좀 갈켜주시면 감사하겠습니다.
특히 이부분이 자꾸 틀렸다는 메세지가 나오던데 자세한 설명좀부탁드려요
mail("newhyh@naver.com",$memo,$mh);
----------------sendmail.php----------------------------
<?
function message ($message)
{
echo "
<script>
window.alert ('$message');
history.go(-1);
</script>
";
exit;
}
if(!$name) message("이름을 입력하세요");
if(!$cname) message("회사명을 적으세요");
if(!$phon) message("회사전화번호나 보낸사람의 전화번호를 적으세요");
if(!$mphon) message("핸드폰번호를 적으세요");
if(!$email) message("이메일을 적으세요");
if(!$memo) message("보낼 내용을 적으세요");
$mh .= "Return-Path: $frommail/r/n";
$mh .= "From: $name <$frommail>/r/n";
$memo = stripslashes($memo);
mail("newhyh@naver.com",$memo,$mh);
echo "
<script>
alert('편지가 발송하엿습니다')
location='emailcon.html';
</script>
" ;
exit;
?>
듣고 폼메일php파일을 만들어봤습니다.
다음은 sendmail.php라는 파일을 제가 만든건데요
email.html에서 폼을 만들어 action="sendmail.php으로 해놨거든요
근데 메일이 가지를 않네요
어디가 틀린지 좀 갈켜주시면 감사하겠습니다.
특히 이부분이 자꾸 틀렸다는 메세지가 나오던데 자세한 설명좀부탁드려요
mail("newhyh@naver.com",$memo,$mh);
----------------sendmail.php----------------------------
<?
function message ($message)
{
echo "
<script>
window.alert ('$message');
history.go(-1);
</script>
";
exit;
}
if(!$name) message("이름을 입력하세요");
if(!$cname) message("회사명을 적으세요");
if(!$phon) message("회사전화번호나 보낸사람의 전화번호를 적으세요");
if(!$mphon) message("핸드폰번호를 적으세요");
if(!$email) message("이메일을 적으세요");
if(!$memo) message("보낼 내용을 적으세요");
$mh .= "Return-Path: $frommail/r/n";
$mh .= "From: $name <$frommail>/r/n";
$memo = stripslashes($memo);
mail("newhyh@naver.com",$memo,$mh);
echo "
<script>
alert('편지가 발송하엿습니다')
location='emailcon.html';
</script>
" ;
exit;
?>