|
|
|
อยากสอบถามเรื่อง IIS SMTP Server form ส่งเมล ทำไมมันส่งไม่ได้อะครับ |
|
|
|
|
|
|
|
น่าจะติด Firewall ของ ISP ครับ ถึงค้างอยู่ใน Queue ครับ
|
|
|
|
|
Date :
2011-06-24 14:53:48 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวนี้ผมไม่ค่อยรู้เรื่องเท่าไหร่เพราะเคยทำเหมือนกันครับ แต่ทำไม่ได้ด้วยหลายๆ สาเหตุ
ผมเลยอยากแนะนำการส่งเมล์อีกแบบหนึ่งก็คือ PHPMailer ครับ ลองค้นดูในเว็บนี้เหมือนมีคนสอนแล้วครับ
แต่ข้อจำกัดของตัวนี้ก็คือเมล์ผู้ส่งต้องเป็นของ Gmail หรืออื่นๆ ที่เอ่อออ.อ..... ไม่ได้เห็นเป็นเมล์ขยะหรืออะไรนี่แหละผมก็จำไม่ได้แล้วครับ
ตอนนี้ผมก็ไม่รู้ว่าแก้ได้หรือยัง แต่ผมใช้ได้นะครับตัวนี้
|
|
|
|
|
Date :
2011-06-24 14:53:51 |
By :
ppanchai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปกติถ้าใช้อินเตอร์เน็ตผ่าน ADSL ทั่ว ไป เค้าจะ Block SMTP ไว้ครับ ให้หา SMTP อื่นใช้ครับ หรือไม่ลองดูของ Gmail ก็ได้ครับ มี Class ให้ใช้
<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 = "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();
?>
</body>
</html>
Go to : PHP Sending Email Using Gmail SMTP Account Authentication
|
|
|
|
|
Date :
2011-06-24 16:33:16 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|