일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- tomcat
- PLSQL
- jsr 296
- appspresso
- Spring
- 선택적조인
- Android
- swingx
- 가우스
- ibsheet
- WebLogic
- 전자정부프레임워크
- MFC
- node.js
- iBATIS
- Struts
- Eclipse
- MySQL
- GPS
- rowspan
- JDOM
- oracle
- phonegap
- dock
- jQuery
- Ajax
- PHP
- JSON
- Google Map
- sencha touch
Archives
- Today
- Total
Where The Streets Have No Name
메일첨부 파일 만들기 본문
";
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(" ", " ",$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">
<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>
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(" ", " ",$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">
<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>