|
|
|
ช่วยดูโค้ดส่งเมล์หน่อยค่ะ เราใช้ PHPMailer นะค่ะ มันต้องแก้ตรงไหนบ้าง ช่วยทีค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<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>
|
|
|
|
|
Date :
2011-03-21 17:04:06 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี error ว่าอะไรบ้างครับ
ลอง debug ดูครับว่ามันเป็นยังไงแล้วก๊อปมาบอกกัน
ใส่ $mail->SMTPDebug = true; ไว้ที่ด้านบนต่อจาก issmtp();
|
|
|
|
|
Date :
2011-03-21 17:11:38 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวส่งเมล์ผมก็โดนปัญหา บ่อยมากๆ
ขอบคุณครับพี่วิน
|
|
|
|
|
Date :
2011-03-21 19:30:26 |
By :
dragonjza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันมีERROR แบบนี้อ่ะค่ะ ต้องแก้ยังไงค่อ
|
|
|
|
|
Date :
2011-03-22 00:19:38 |
By :
badtzyui |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
could not connect to smtp host ก็ต้องตรวจว่า username+password ของอีเมลถูกต้องรึเปล่า
|
|
|
|
|
Date :
2011-03-22 06:16:54 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|