묻고답하기


폼메일을 홈페이지에 달려고 합니다.
성공은 했는데, 한가지 고민이 생겨서 글을 올려요.
다름이 아니라, 받는 메일이 저에게만 올 수 있도록 주소를 고정하고 싶습니다.
그런데 어떤것을 고쳐야 할 지 모르겠네요.





아래쪽은 그 소스구요. 물론 별은 뺍니다^^
모쪼록 아시는 분은 꼭 도와주셨음 좋겠어요. 부탁드립니다.
그럼 오늘도 좋은하루 되세요!






<★html>
<★head>
<★meta http-equiv='Content-Type' content='text/html; charset=euc-kr'>
<★STYLE TYPE="text/css">
<★!--
A:link {text-decoration:none; color:darkblue}
A:visited{text-decoration:none; color:663399}
A:hover {text-decoration:none; color:red}
A:active {text-decoration:none; color:red}
td {font-size:9pt}
-->
<★/STYLE>

<★/head>
<★body bgcolor='#FFFFFF'>
<★center>
<★?
// Sendmail 폼
if(!$mailsend)
{
?>
<★/center>
<★form method='post' enctype='multipart/form-data' action='index.php?mailsend=send'>
<★p style="line-height:100%; margin-top:0; margin-bottom:0;" align="center"><★img src="images/h1.gif" width="400" height="25" border="0"><★center>
<★table width="399" border="1" cellspacing="0" bordercolor="#CCCCCC" bordercolordark="white" bordercolorlight="#CCCCCC" >
<★tr>
<★td width="42" align="left" nowrap bgcolor="#EAEAEA">
<★tt> 이 름<★/font><★/span><★/tt>
<★/td>
<★td align="left" width="347">

<★font><★/font>
<★/td>
<★/tr>
<★tr>
<★td width="42" align="left" nowrap bgcolor="#EAEAEA">
<★tt><★span style="font-size:9pt;"><★font face="굴림체"> 메 일<★/font><★/span><★/tt>
<★/td>
<★td align="left" width="347">

<★font><★input name=to size="48" style="border-color:rgb(204,204,204); border-style:none;">
<★/td>
<★/tr>
<★/table>

<★p style="line-height:100%; margin-top:0; margin-bottom:0;" align="center"><★img src="images/h2.gif" width="400" height="25" border="0"><★center>

<★table width="398" border="1" cellspacing="0" bordercolor="#CCCCCC" bordercolordark="white" bordercolorlight="#CCCCCC" >
<★tr>
<★td width="40" align="left" nowrap bgcolor="#EAEAEA">
<★tt><★span style="font-size:9pt;"> 이 름<★/font><★/span><★/tt>
<★/td>
<★td align="left" width="348">

<★font><★/font>
<★/td>
<★/tr>
<★tr>
<★td width="40" align="left" nowrap bgcolor="#EAEAEA">
<★tt> 메 일<★/font><★/span><★/tt>
<★/td>
<★td align="left" width="348">

<★font>
<★/td>
<★/tr>
<★tr>
<★td width="40" align="left" nowrap bgcolor="#EAEAEA">

<★p style="line-height:100%; margin-top:0; margin-bottom:0;"><★tt><★span style="font-size:9pt;"><★font face="굴림체"> 제 목<★/font><★/span>
<★/td>
<★td align="left" width="348">


<★ p style="line-height:100%; margin-top:0; margin-bottom:0;"><★ font><★input name=subject size="48" style="border-color:rgb(204,204,204); border-style:none;"><★/font>
<★/td>
<★/tr>
<★tr>
<★td width="40" align="left" nowrap bgcolor="#EAEAEA">
<★tt> 내 용<★/font><★/span><★/tt>
<★/td>
<★td align="left" width="348">



<★textarea name=message rows="14" cols="46" style="border-color:rgb(204,204,204); border-style:none;"><★/textarea>


<★/td>
<★/tr>
<★tr>
<★td width="40" align="left" nowrap bgcolor="#EAEAEA" rowspan="3" height="63">
<★tt><★span style="font-size:9pt;"> 첨 부<★/font><★/span><★/tt>
<★/td>
<★td align="left" width="348">
<★input type=file size="34" name=userfile style="border-color:rgb(204,204,204); border-style:none;">

<★/td>
<★/tr>
<★tr>
<★td align="left" width="348">
<★input type=file size="34" name=userfile2 style="border-color:rgb(204,204,204); border-style:none;">
<★/td>
<★/tr>
<★tr>
<★td align="left" width="348" height="9">
<★input type=file size="34" name=userfile3 style="border-color:rgb(204,204,204); border-style:none;">
<★/td>
<★/tr>
<★tr>
<★td colspan=2 align=center width="392" bgcolor="white">
<★input type=submit name=submit value='메일전송' style="background-color:white; border-color:rgb(204,204,204); border-style:none;">
<★/td>
<★/tr>
<★/table>
<★/form>

<★tt><★span style="font-size:9pt;"><★font face="굴림체">Copyright 2002' Bell5Works
allreserved. Bell5Works-sendmail_v1.0<★/font><★/span><★/tt><★/center>

<★p>

}


// 메일 프로그램 시작
if($mailsend==send)
{
// 에러
if(!$to || !$subject)
{
echo("
<★script>
window.alert('받는 사람의 메일주소나 제목은 반드시 입력해 주시기 바랍니다.')
history.go(-1)
<★/script>
");
}
else
{
// 받는 사람 처리
$to = $to_name." <★".$to.">";

// 헤더부분
$mailheader .= "Return-Path: $fromrn";
$mailheader .= "From: $from_name <$from>rn";
$mailheader .= "X-Mailer: Gfew Interfacern";

// 첨부화일이 3개일경우
if ($userfile && $userfile_size && $userfile2 && $userfile2_size && $userfile3 && $userfile3_size)
{
$filename=basename($userfile_name);
$fp = fopen($userfile,"r");
$file = fread($fp,$userfile_size);
fclose($fp);
$filename2=basename($userfile2_name);
$fp2 = fopen($userfile2,"r");
$file2 = fread($fp2,$userfile2_size);
fclose($fp2);
$filename3=basename($userfile3_name);
$fp3 = fopen($userfile3,"r");
$file3 = fread($fp3,$userfile3_size);
fclose($fp3);

if ($userfile_type == "" && $userfile2_type == "" && $userfile3_type == "")
{
$userfile_type = "application/octet-stream";
$userfile2_type = "application/octet-stream";
$userfile3_type = "application/octet-stream";
}
$boundary = "--------" . uniqid("part");
$mailheader .= "MIME-Version: 1.0rn";
$mailheader .= "Content-Type: multipart/mixed; boundary="$boundary"";
$messages = "This is a multi-part message in MIME format.rnrn";
$messages .= "--$boundaryrn";
$messages .= "Content-Type: text/html; charset=euc-krrn";
$messages .= "Content-Transfer-Encoding: 8bitrnrn";
$messages .= nl2br(addslashes($message)) . "rn";
$messages .= "--$boundaryrn";
$messages .= "Content-Type: $userfile_type; name="$filename"rn";
$messages .= "Content-Transfer-Encoding: base64rnrn";
$messages .= ereg_replace("(.{80})","\1rn",base64_encode($file));
$messages .= "rn--$boundary" . "rn";
$messages .= "Content-Type: $userfile2_type; name="$filename2"rn";
$messages .= "Content-Transfer-Encoding: base64rnrn";
$messages .= ereg_replace("(.{80})","\1rn",base64_encode($file2));
$messages .= "rn--$boundary" . "rn";
$messages .= "Content-Type: $userfile3_type; name="$filename3"rn";
$messages .= "Content-Transfer-Encoding: base64rnrn";
$messages .= ereg_replace("(.{80})","\1rn",base64_encode($file3));
$messages .= "rn--$boundary" . "rn";
}
//첨부화일이 2개일경우
elseif ($userfile && $userfile_size && $userfile2 && $userfile2_size)
{
$filename=basename($userfile_name);
$fp = fopen($userfile,"r");
$file = fread($fp,$userfile_size);
fclose($fp);
$filename2=basename($userfile2_name);
$fp2 = fopen($userfile2,"r");
$file2 = fread($fp2,$userfile2_size);
fclose($fp2);


if ($userfile_type == "" && $userfile2_type == "")
{
$userfile_type = "application/octet-stream";
$userfile2_type = "application/octet-stream";
}
$boundary = "--------" . uniqid("part");
$mailheader .= "MIME-Version: 1.0rn";
$mailheader .= "Content-Type: multipart/mixed; boundary="$boundary"";
$messages = "This is a multi-part message in MIME format.rnrn";
$messages .= "--$boundaryrn";
$messages .= "Content-Type: text/html; charset=euc-krrn";
$messages .= "Content-Transfer-Encoding: 8bitrnrn";
$messages .= nl2br(addslashes($message)) . "rn";
$messages .= "--$boundaryrn";
$messages .= "Content-Type: $userfile_type; name="$filename"rn";
$messages .= "Content-Transfer-Encoding: base64rnrn";
$messages .= ereg_replace("(.{80})","\1rn",base64_encode($file));
$messages .= "rn--$boundary" . "rn";
$messages .= "Content-Type: $userfile2_type; name="$filename2"rn";
$messages .= "Content-Transfer-Encoding: base64rnrn";
$messages .= ereg_replace("(.{80})","\1rn",base64_encode($file2));
$messages .= "rn--$boundary" . "rn";
}
//첨부화일이 1개일경우
elseif($userfile && $userfile_size)
{
$filename=basename($userfile_name);
$fp = fopen($userfile,"r");
$file = fread($fp,$userfile_size);
fclose($fp);
if ($userfile_type == "")
{
$userfile_type = "application/octet-stream";
}
$boundary = "--------" . uniqid("part");
$mailheader .= "MIME-Version: 1.0rn";
$mailheader .= "Content-Type: multipart/mixed; boundary="$boundary"";
$messages = "This is a multi-part message in MIME format.rnrn";
$messages .= "--$boundaryrn";
$messages .= "Content-Type: text/html; charset=euc-krrn";
$messages .= "Content-Transfer-Encoding: 8bitrnrn";
$messages .= nl2br(addslashes($message)) . "rn";
$messages .= "--$boundaryrn";
$messages .= "Content-Type: $userfile_type; name="$filename"rn";
$messages .= "Content-Transfer-Encoding: base64rnrn";
$messages .= ereg_replace("(.{80})","\1rn",base64_encode($file));
$messages .= "rn--$boundary" . "rn";
}

//첨부화일이 없을경우
else
{
$mailheader .= "Content-Type: text/html; charset=euc-krrn";
$mailheader .= "Content-Transfer-Encoding: 8bitrnrn";

$messages = $mail_head."rn";
$messages .= nl2br(addslashes($message))."rn";
$messages .= $mail_tail."rn";
}
mail($to,$subject,$messages,$mailheader);

echo("

");
}
}

// 메일 전송
if($mailsend==choice)
{
echo("
<★table width=$table_width border=0>
<★tr>
<★td height=20>
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
foxfla 폼메일에서 받는사람 고정?! [4] 2007.08.10
김대우 헤더와 푸터 안 만들고 노프레임 할려면? [3] 2007.08.10
벼리천사 폰트 주소받는거 질문이욧^ ^ㅋ [2] 2007.08.10
김성균 iframe 사용시 top으로 이동하는 방법.. [1] 2007.08.10
자바 [포토샵 질문] TsectionToolSlot 이라고 나오면서 포토샵이 실행이 안됩니다  
수컷여우 웹페이지 인증 질문  
엄재형 공지창(팝업창)에..관한..질문입니다... [7] 2007.08.10
임수연 카운터 [1] 2007.08.10
딩가리딩 이 도형모양은 어떻게 그리나요? [3] 2007.08.10
박우진 테이블에 외부로그인 집어넣을때 생기는 문제.. (위치관련..) [4] 2007.08.10
CityBoys-Life switch문과 퀴리문 부분에 대한 질문입니다.  
이우진 노프레임 관련질문인데요!! [1] 2007.08.10
김성종 스크롤바에 따라서 위아래로 움직이는 레이어의 위치를 고정하고 싶은데요. [1] 2007.08.10
리틀보아 htaccess를 이용하여 무단링크막기` [1] 2007.08.10
조은영 포토샵속도가..... [1] 2007.08.10
서찬우 MySql에 관한 정말 왕초보의 질문입니다. [2] 2007.08.10
ⓒe~☆ 한 화면에 아이프레임이 두개면..?? [1] 2007.08.10
라고은 주메뉴에 마우스대면 나오는 서브메뉴 위치가...  
송기헌 지정한 크기로 새창 띄우기 질문인데요..제가 특수한 상황이라..;;  
현이 1024에서는 보이고, 800모드에서는 안보이게 할려면..... [1] 2007.08.10
쭈뿌..쭈뿌.. 아파치서버+제로보드+php 등등.. [3] 2007.08.10
김명관 아이 프레임 스크롤바 색상을 바꾸고 싶은데 알려주세요 ㅜㅛㅜ [2] 2007.08.10
에이치걸 체크박스를 이미지로 표시하는 법 좀..  
에이치걸 체크박스를 이미지로 표시하는 법 좀..  
php_seeker php 코드가 제대로 안돌아가서리...  
민군^-^ 아이템 베이같은 홈페이지를 구축하려면  
太公望K 홈페이지가 제대로 뜨지를 않는데..  
원성연 쫌 어려운 질문 드립니다. [3] 2007.08.10
엄재형 글씨위에..마우스를..대면..링크건..이미지가..나오게..하는소스좀..부탁합니다.. [1] 2007.08.10
밝은세상만들기 제가 phpschool에서 답을 못얻어서 다시한번 도움을 청합니다. [1] 2007.08.10