ใช้โค๊ดส่งเมลล์ ของ thaicreate แล้ว error ค่ะรบกวนช่วยทีนะคะ
mailto ทดสอบในเครื่องไม่ได้ผลหรอกครับ ต้องทดสอบที่ server จริง เพราะในเครื่องไม่ได้ลง mail server
Date :
2012-06-07 11:20:30
By :
randOmizE
ลองผ่าน Host ครับ จะได้ไม่มีปัญหาครับ
Date :
2012-06-07 11:28:08
By :
mr.win
ผ่านโฮสแล้ว มันขึ้นว่าส่งได้ค่ะแต่ไม่ได้รับอีเมลล์
Date :
2012-06-07 11:33:42
By :
SG14
ลองส่งเข้าหาโดเมนตัวเองดูครับ ปกติส่งเข้า hotmail ไม่ได้แสดงว่า IP มีปัญหาครับ อาจจะต้องติดต่อผู้ดูแล host ครับ
Date :
2012-06-07 12:02:50
By :
mr.win
อีกวิธีหนึ่งที่ยอยากแนะนำคือใช้ SMTP ของ Gmail ครับ
Code (PHP)
<?php
require_once('class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "[email protected] "; // GMAIL username
$mail->Password = "mypassword"; // GMAIL password
$mail->From = "[email protected] "; // "[email protected] ";
//$mail->AddReplyTo = "[email protected] "; // Reply
$mail->FromName = "Mr.Weerachai Nukitram"; // set from Name
$mail->Subject = "Test sending mail.";
$mail->Body = "My Body & <b>My Description</b>";
$mail->AddAddress("[email protected] ", "Mr.Adisorn Boonsong"); // to Address
$mail->AddAttachment("thaicreate/myfile.zip");
$mail->AddAttachment("thaicreate/myfile2.zip");
//$mail->AddCC("[email protected] ", "Mr.Member ShotDev"); //CC
//$mail->AddBCC("[email protected] ", "Mr.Member ShotDev"); //CC
$mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low
$mail->Send();
?>
Go to : PHP Sending Email Using Gmail SMTP Account Authentication
Date :
2012-06-07 12:03:44
By :
mr.win
ไม่ต้องเปิดครับ
Date :
2012-06-07 14:52:47
By :
mr.win
ตอนนี้ส่ง gmail ได้แล้วค่ะ แต่ปัญหาคือ มันไม่ยอมอ่านภาษาไทยค่ะ
Date :
2012-06-08 11:13:02
By :
SG14
utf-8 หรือ tis-620 มันมีให้กำหนด Charset ครับ
Date :
2012-06-08 11:33:08
By :
mr.win
ตอนนี้ส่ง gmailได้แลวค่ะ
แต่อยากลองส่งด้วย phpmailer
เกิด เออเรอร์ดังนีคะ
line2072 คือ }
ประวัติการแก้ไข 2012-06-08 16:48:38 2012-06-08 16:48:52
Date :
2012-06-08 16:48:03
By :
SG14
Load balance : Server 05