|
|
|
ส่งเมล์แนบไฟล์ ใครมี code การเขียนรูปแบบเมล์ หรือ code php ส่งเมล์แบบแนบไฟล์หลายๆไฟล์ได้บ้างครับ |
|
|
|
|
|
|
|
มีแต่หลักการเขียนค่ะ
ก่อนอื่นก็ต้องสร้างหน้าแนบไฟล์ก่อนในหน้านี้ก็อาจจะเก็บข้อมูลการแนบไฟล์ลงในฐานข้อมูลไว้ก่อน แล้วเมื่อจะส่งเมล์ก็ทำการค้นหาไฟล์ที่ต้องการแนบส่งขึ้นมา แล้ววนเซฟลงฐานข้อมูลทีละตัว แล้วก็ทำการลบข้อมูลในฐานข้อมูลแนบไฟล์ออก
|
|
|
|
|
Date :
19 มิ.ย. 2550 09:55:22 |
By :
เจ้าหญิงก้อนหิน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับตรงที่
ค้นหาไฟล์ที่ต้องการแนบส่งขึ้นมา
นี้ละครับขอที่ละเอียดอีกนิดได้ไหมครับ
ผมส่งแนบไฟล์ได้แล้วแต่ว่าเวลาเปิดอ่านผมเห็นแค่ไฟล์เดียวคือไฟล์แรกก็เลยงงๆนะครับ
เลยอยากรู้ว่าผมเขียน ในส่งของ Content ถูกหรือเปล่านะครับ
|
|
|
|
|
Date :
19 มิ.ย. 2550 10:10:53 |
By :
boum |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<table width="600" border="0">
<tr>
<td>กรุณาคลิกที่ Browse เพื่อหาไฟล์ที่ต้องการแนบส่ง</td>
</tr>
<tr>
<td><form name="form1" enctype="multipart/form-data" method="post" action="attract.php">
ค้นหา ไฟล์ ::
<input type="hidden" name="MAX_FILE_SIZE" value="250000">
<input type="file" name="fileupload">
<input type="submit" name="Submit" value="ตกลง และ เลือกไฟล์เพิ่ม">
<strong><font color="#339900" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<input name="bckbtn" type="button" id="bckbtn2" value="กลับ" onClick="location.href='write_msg.php';">
</font></strong>
</form>
<?
if(isset($_POST['Submit'])){
$limitfile=250000; //กำหนด ขนาด file ที่อนุญาติให้โหลดเข้ามาเก็บได้ (ต่อ 1 file) หน่วยเป็น byte
$fileupload=$_FILES['fileupload']['tmp_name'];
$fileupload_name=$_FILES['fileupload']['name'];
$fileupload_size=$_FILES['fileupload']['size'];
$fileupload_type=$_FILES['fileupload']['type'];
if ($fileupload)
{
$array_last=explode (".",$fileupload_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]);
if (($fileupload_size<$limitfile) && ($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg" or $lastname=="txt" or $lastname=="xls" or $lastname=="doc" or $lastname=="zip" or $lastname=="rar")) {
copy($fileupload,"uploadfile/".$fileupload_name);
$att="uploadfile/$fileupload_name";
$sql="insert into att values('$valid_user','$att');";
mysql_db_query($db_name,$sql);
} // if
}// if
else
{
echo "<script language='JavaScript'>alert('ไม่สามารถ Upload File ได้');</script>";
}// else
}
?>
</td>
</tr>
<tr>
<td><form name="form2" method="post" action="del_att.php">
<?
$showatt=new mess($host,$db_name,$user,$pass);
$tb_name='att';
$sql="Select * From att where username='$valid_user';";
$result=mysql_db_query($db_name,$sql);
$num_rows=mysql_num_rows($result); /* นับ Reccord ที่พบ */
?>
<table width="600" border="1" bordercolor="#FFFFFF">
<tr bgcolor="#99CCFF">
<td width="30" ><div align="center">ลบ</div></td>
<td><div align="center">ชื่อไฟล์</div></td>
</tr>
</table>
<?
$a=0;
while($a < $num_rows)
{
$rec= mysql_fetch_array($result);
$att=$rec[att];
?>
<table width="600" border="1" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<tr bordercolor="#CCCCFF">
<td width="30"><div align="center"><a href="del_att.php?att=<?echo"$att"; ?>"><img src="pic/del.jpg" border="0" ></a></div></td>
<td width="553">
<?=$rec[att];?>
</td>
</tr>
</table>
<?
$a++;
}//while
?>
</form></td>
</tr>
<tr></tr>
<tr>
<td></td>
</tr>
</table>
|
|
|
|
|
Date :
19 มิ.ย. 2550 10:26:55 |
By :
เจ้าหญิงก้อนหิน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่ส่งให้ดูเมื่อกี้ทั้งตัวอย่างการแนบไฟล์และการเอาไฟล์ที่แนบมาแสดงด้วยนะคะ พอดีเป็นคนที่เขียนโปรแกรมไม่เก่งเหมือนกันแต่อยากบอกน่ะคะ
|
|
|
|
|
Date :
19 มิ.ย. 2550 10:30:58 |
By :
เจ้าหญิงก้อนหิน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
T_T
อยากได้ส่งนี้อะครับ
$cfg = "To: ".$to_mail." \r\n";
$cfg .= "From: ".$from_mail." \r\n";
$cfg .= "Reply-To: ".$from_mail." \r\n";
$cfg .= "MIME-Version: 1.0 \r\n";
$cfg .= "Content-Type: multipart/mixed; boundary=\"".$boundary."\" \r\n\r\n";
$msg = "--".$boundary." \r\n";
$msg .= "Content-Type: text/plain \r\n";
$msg .= "Content-Transfer-Encoding: 7bit \r\n\r\n";
$msg .= $content." \r\n";
$msg .= "Content-Type: ".$con_type."; name = \"".$mattachfile."\" \r\n";
$msg .= "Content-Transfer-Encoding: base64 \r\n";
$msg .= "Content-Disposition: attachment; filename=\"".$mattachfile."\" \r\n\r\n ";
ถ้าเคยเห็นส่งให้ผมดูอีกที่นะครับ
ชอบคุณครับ
|
|
|
|
|
Date :
19 มิ.ย. 2550 11:09:51 |
By :
boum |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
19 มิ.ย. 2550 13:49:48 |
By :
boum |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = "[email protected]";
$strSubject = "Test Send Mail";
$strMessage = "My Body & <b>My Description</b>";
//*** Uniqid Session ***//
$strSid = md5(uniqid(time()));
$strHeader = "";
$strHeader .= "From: Mr.Weerachai Nukitram<[email protected]>\nReply-To: [email protected]\n";
$strHeader .= "Cc: Mr.Surachai Sirisart<[email protected]>";
$strHeader .= "Bcc: [email protected]";
$strHeader .= "MIME-Version: 1.0\n";
$strHeader .= "Content-Type: multipart/mixed; boundary=\"".$strSid."\"\n\n";
$strHeader .= "This is a multi-part message in MIME format.\n";
$strHeader .= "--".$strSid."\n";
$strHeader .= "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "Content-Transfer-Encoding: 7bit\n\n";
$strHeader .= $strMessage."\n\n";
//*** Attachment Files ***//
$arrFiles[] = "thaicreate1.txt";
$arrFiles[] = "thaicreate2.txt";
$arrFiles[] = "thaicreate3.txt";
$arrFiles[] = "thaicreate4.txt";
$arrFiles[] = "thaicreate5.txt";
for($i=0;$i<count($arrFiles);$i++)
{
if(trim($arrFiles[$i]) != "")
{
$strFilesName = $arrFiles[$i];
$strContent = chunk_split(base64_encode(file_get_contents($strFilesName)));
$strHeader .= "--".$strSid."\n";
$strHeader .= "Content-Type: application/octet-stream; name=\"".$strFilesName."\"\n";
$strHeader .= "Content-Transfer-Encoding: base64\n";
$strHeader .= "Content-Disposition: attachment; filename=\"".$strFilesName."\"\n\n";
$strHeader .= $strContent."\n\n";
}
}
$flgSend = @mail($strTo,$strSubject,null,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>
|
|
|
|
|
Date :
2009-04-25 15:10:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2009-04-25 15:10:31 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2009-10-20 16:41:53 |
By :
aaa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2010-05-16 22:21:16 |
By :
hatori |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่แหละที่ต้องการ
|
|
|
|
|
Date :
2012-12-03 10:36:20 |
By :
namwon74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|