|
|
|
ไม่สามารถส่งอีเมล์จากหน้าเว็บเข้าเมล์ของ CS Loxinfo ได้ครับ รบกวนพี่่ดูให้หน่อยครับ |
|
|
|
|
|
|
|
ส่งได้ไม่ได้ ไม่ได้อยู่ที่ Script อย่างเดียวครับ มีหลายสาเหตุ เช่น
- IP Server ที่ใช้ส่ง ของคุณติด BlackList
- Mail Server ปลายทาง รับเฉพาะ Email ที่มีการส่งผ่านการ Authen แบบ SMTP
แจกฟรี Script ส่งอีเมล์แบบ SMTP / POP ของ PHP ที่สามารถใช้งานได้จริง ๆ
ถ้าเราใช้การส่งแบบ SMTP เราจะทราบสาเหตุว่าทำไมไม่สามารถส่งไปยังปลายทางได้ เพราะจะมกีารตีกลับ ถึงเหตุผล
|
|
|
|
|
Date :
2014-01-08 12:53:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?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 = "xxxxxxxx"; // GMAIL password
$mail->From = "[email protected]"; // "[email protected]";
//$mail->AddReplyTo = "[email protected]"; // Reply
$mail->FromName = "Krid"; // set from Name
$mail->Subject = "Test sending mail. ทดสอบ ส่งเมลล์ RMA";
$mail->Body = "My Body & <b>My Description</b>";
$mail->AddAddress("[email protected]", "Krid"); // 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();
?>
</body>
</html>
ผมลองส่งเข้าเมล์ตัวเองไม่ได้ครับ
require_once('class.phpmailer.php'); คลาสนี้ต้องลงเองหรือพิมพ์เองหรือปล่าวครับ
|
|
|
|
|
Date :
2014-01-08 14:06:38 |
By :
vbnet |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Download มาด้วยครับ
|
|
|
|
|
Date :
2014-01-08 14:19:09 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับพี่ ขอบคุณมากๆครับ สุดท้ายต้องใช้ smtp ของกูเกิ้ลถึงได้เหนื่อยมาก อิอิ
สรปโค้ดข้างบน + phpmailer ใช้ได้เลยครับ
|
|
|
|
|
Date :
2014-01-08 14:34:34 |
By :
vbnet |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|