Where The Streets Have No Name

메일첨부 파일 만들기 본문

Developement/PHP

메일첨부 파일 만들기

highheat 2006. 6. 27. 17:31
";
   for($i = 0; $i < sizeof($Parts); $i++) $Hearders .= BuildMultiPart($Parts);
   @mail($To, $Subject, "", $Hearders);
}

$Name = "보내는이 이름";
$Sender = "보내는이 이메일";
$Uname = "받는이 이름";
$Receiver = "받는이 이메일";


$Fromheader= "From: $Name <".$Sender.">
";
$Returnheader = "Return-Path: ".$Sender."
";
$Errhearderr = "Errors-To: ".$Sender."
";


$Hearders = $Fromheader.$Returnheader.$Errhearderr;
$Toheader= "To: $Uname <".$Receiver.">
";
$Subject = "파일 첨부 메일 테스트";
$Body = "<font color=blue>파일 첨부 테스트 입니다.</font>";

$Html = 1;
if($Html == 1){ /* 텍스트 일 경우 */

   $Body = htmlspecialchars($Body);
   $Body = stripslashes($Body);
   $Body = str_replace(" ", "&nbsp;",$Body);
   $Body = nl2br($Body);

}else{        /* if($Html == 1){ else */

   $Body = stripslashes($Body); /* HTML 일 경우 */

}        

$Body = stripslashes($Body);
if($Mode){
   

Send($Html, $Toheader, $Subject, $Body, $Hearders, $File, $File_name, $File_type);
echo ("<META HTTP-EQUIV='REFRESH' CONTENT='0;URL=".$PHP_SELF."'>");
}


?>
<html>
<head>
<title>사진 업로드</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<script language="javascript">
   function CheckForm(form) {
       
       return true;
       }
</script>
</head>
</body>
<center>
<table width="600" border="0" cellspacing="1" cellpadding="0" bgcolor="#A2A2A2">
<Form name="DetailForm" method="post" action="<?=$PHP_SELF?>" onsubmit="return CheckForm(this);" ENCTYPE="MULTIPART/FORM-DATA">
<input type="hidden" name="Mode" value="Up">
   <tr>
       <td bgcolor="#E5E5E5" align="center" width="100" height="25">
       이미지
       </td>
       <td bgcolor="#ffffff" width="500">
       &nbsp;<input type="file" name="File" class="input1" size='37'>
       </td>
   </tr>    
   <tr>
       <td align="center" colspan="2" bgcolor="#ffffff" height="45">
       <input type="submit" value= " 메일 전송 ">                 
       </td>
   </tr>
</Form>
</table>
</center>
</body>
</html>