|
|
|
ส่งเมล์แล้วมันไม่ได้ครับ ช่วยดูโค้ดหน่อยครับท่านทั้งหลาย |
|
|
|
|
|
|
|
ส่งเมล์ แบบแนบไฟล์ แล้วมันไม่ได้ครับ ช่วยดูโค้ดหน่อยครับท่านทั้งหลาย ระหว่างที่ส่งมันจะใช้เวลาในการส่งนานมาก พอใช้เวลาโหลดนานแล้ว แถมยังส่งออกไมไม่ได้ด้วยครับ และยังไม่เข้าเงื่อนไข Email send successfully ด้วย
โค้ดเมล์ เครดิตพี่วินครับ
https://www.thaicreate.com/php/php-send-email-attach-files.html
ค่าที่ส่งไป
Code (PHP)
http://localhost/myweb_beta/en/contact/application_send.php?send=1
ค่าที่ echo ออกมา
Code (PHP)
SELECT ty_listdetail. * ,ty_application. * FROM ty_listdetail , ty_application WHERE ty_listdetail.id_job = ty_application.id_job && id=1
Code (PHP)
<?php
/**
* Application Send
* @version 1.0
*/
// path to the root
$path_to = '../';
// includes
require '../config.inc.php';
require '../lib.inc.php';
require '../init.inc.php';
// create database connection
$db = new MysqlDB(DB_HOSTNAME, DB_DATABASE, DB_USERNAME, DB_PASSWORD);
@mysql_connect(DB_HOSTNAME,DB_USERNAME,DB_PASSWORD)or die(mysql_error());
@mysql_select_db(DB_DATABASE)or die(mysql_error());
/*// strip all vars
if (get_magic_quotes_gpc() == 1) {
stripSlashesArray($_GET);
}*/
$body_id = 'Application_Send';
// include top
include $path_to.'top.incs.php';
//sql
$sql_send = "SELECT ty_listdetail. * ,ty_application. * FROM ty_listdetail , ty_application WHERE ty_listdetail.id_job = ty_application.id_job && id=$_GET[send]";
$query=mysql_query($sql_send) or die (mysql_error());
echo $sql_send;
while($rec=mysql_fetch_assoc($query)){
//code sned mail
$strTo = "[email protected]";
$strSubject = "New Application";
$strMessage = "Name : $rec[name]"."<br/>"." Surname : $rec[surname]"."<br/>"." Apply for position : $rec[position]"."<br/>"." telephone : $rec[telephone]"."<br/>"." Mobile :[mobile]"."<br/>"."Experted Salary $rec[experted_salary]";
//*** Uniqid Session ***//
$strSid = md5(uniqid(time()));
$strHeader = "";
$strHeader .= "From: Name : $rec[name]"." Surname : $rec[surname]"."<$rec[email]>"."\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 = "application/$rec[resume_file]";
$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";
$flgSend = @mail($strTo,$strSubject,null,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "<script>alert('Email send successfully')</script>";
}
else
{
echo "<script>alert('Email can't successfully')</script>";
}
}//while
?>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2012-06-18 12:08:10 2012-06-18 12:10:12
|
|
|
|
|
Date :
2012-06-18 12:07:37 |
By :
nottpoo |
View :
1034 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอาเครื่องหมาย @ ที่บรรทัด 65 ออก แล้วลองดู Error ครับ
เดาว่าคงทำที่ localhost แล้วไม่ได้ลง mail server ครับ
|
|
|
|
|
Date :
2012-06-18 13:03:14 |
By :
Pine |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณลองที่ localhost แล้วมีการติดตั้ง SMTP เรียบร้อยแล้วหรือเปล่าครับ หรือไม่ก็ลองบนโฮสจริง ๆ ลเยครับ จะได้ไมีเจอปัยหา
|
|
|
|
|
Date :
2012-06-18 17:43:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|