Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,025

HOME > PHP > PHP Sending Mail > PHP Sending Email Attachment Files



Clound SSD Virtual Server

PHP Sending Email Attachment Files

PHP Sending Email Attachment Files เป็นรูปแบบการส่งอีเมล์โดยทำการแนบไฟล์ไปกับอีเมล์ (Attach Files)

IIS SMTP Virtual Server



phpSendEmailAttachFiles.php

<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?php
	$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";
	
	//*** Files 1 ***//
	$strFilesName1 = "thaicreate1.txt";
	$strContent1 = chunk_split(base64_encode(file_get_contents($strFilesName1))); 
	$strHeader .= "--".$strSid."\n";
	$strHeader .= "Content-Type: application/octet-stream; name=\"".$strFilesName1."\"\n"; 
	$strHeader .= "Content-Transfer-Encoding: base64\n";
	$strHeader .= "Content-Disposition: attachment; filename=\"".$strFilesName1."\"\n\n";
	$strHeader .= $strContent1."\n\n";
	
	//*** Files 2 ***//
	$strFilesName2 = "thaicreate2.txt";
	$strContent2 = chunk_split(base64_encode(file_get_contents($strFilesName2))); 
	$strHeader .= "--".$strSid."\n";
	$strHeader .= "Content-Type: application/octet-stream; name=\"".$strFilesName2."\"\n"; 
	$strHeader .= "Content-Transfer-Encoding: base64\n";
	$strHeader .= "Content-Disposition: attachment; filename=\"".$strFilesName2."\"\n\n";
	$strHeader .= $strContent2."\n\n";

	$flgSend = @mail($strTo,$strSubject,null,$strHeader);  // @ = No Show Error //
	if($flgSend)
	{
		echo "Email Sending.";
	}
	else
	{
		echo "Email Can Not Send.";
	}
?>
</body>
</html>




phpSendEmailMultiAttachFiles.php กรณีที่มีหลายไฟล์และอ่านเป็นแบบ Array

<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?php
	$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>


Screenshot

PHP Send Email

PHP Send Email

PHP Send Email









ใช้งานจริงกับ Hotmail.Com

PHP Send Email

PHP Send Email



PHP Sending Email HTML Format (Thai Message) ส่งอีเมล์ HTML Format และภาษาไทย


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-08-10 02:30:57 / 2017-03-25 00:41:44
  Download : Download  PHP Sending Email Attachment Files
 Sponsored Links / Related

 
PHP Sending Email / Send Mail
Rating :

 
PHP Sending Email Name Alias
Rating :

 
PHP Sending Email Cc and Bcc
Rating :

 
PHP Sending Email Reply-To Header
Rating :

 
PHP Sending Email ส่งอีเมล์ภาษาไทย กับ HTML Format (Thai Message)
Rating :

 
PHP Sending Email Contact Form
Rating :

 
PHP Sending Email Set Priority
Rating :

 
PHP Sending Email Upload Form & Attachment Files
Rating :

 
PHP Sending Email Multiple Array Upload Form & Attachment File
Rating :

 
PHP Sending Email Upload,Zip & Attachment Files
Rating :

 
PHP Sending Email Using Gmail SMTP Account Authentication
Rating :

 
PHP Sending Email Using SMTP Authentication
Rating :

 
PHP Mail Class (MIMEMAIL V 1.5)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่