|
|
|
ส่งเมลล์ contact ขึ้นหน้าว่างเปล่าค่ะ รบกวนช่วยดูโค้ดให้หน่อยนะคะ ( phpmailer ) |
|
|
|
|
|
|
|
ใช้ตัวนี้ครับ ดาวโหลดข้างล่าง ส่งออกแน่นอน ใช้อยู่เหมือนกัน
https://www.thaicreate.com/community/php-send-mail-smtp.html
|
|
|
|
|
Date :
2014-09-12 13:48:48 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
require("phpmailer/class.phpmailer.php");
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = ""; // sets the prefix to the servier
$mail->Host = "mail.oo.com"; // sets GMAIL as the SMTP server
$mail->Port = 25; // set the SMTP port for the GMAIL server
$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "1111"; // GMAIL password
$mail->From = "[email protected]"; // "[email protected]";
$mail->FromName = "oo"; // set from Name
$mail->Subject = "ข้อความติดต่อจาก Contact ;
$mail->Body = "ข้อความจาก คุณ ".$_POST['txtname']." \n\n\n";
$mail->Body .= "อีเมลล์ ".$_POST['txtemail']." \n";
$mail->Body .= "เบอร์โทร ".$_POST['txtphone']." \n";
$mail->Body .= "เรื่อง ".$_POST['txtmessages']." \n";
$mail->AddAddress("[email protected]", [email protected]"); // to Address
$mail->Send();
ลองเซ็ตตามนี้แล้ว ขึ้น page error ค่ะ
Internal server error HTTP 500
|
|
|
|
|
Date :
2014-09-12 14:26:19 |
By :
Nuntida.Nay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$mail->Body = "ข้อความจาก คุณ ".$_POST['txtname']." \n\n\n";
ลองลบออก เหลือแค่
$mail->Body = "test";
ได้ไหมฮะ
|
|
|
|
|
Date :
2014-09-12 14:40:59 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ $mail = new PHPMailer(); เพิ่มเข้าไป
ไม่ error นะคะ แต่เป็นหน้าว่างเปล่าค่ะ
|
|
|
|
|
Date :
2014-09-12 14:50:20 |
By :
Nuntida.Nay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$mail->Subject = "ข้อความติดต่อจาก Contact ;
คุณไม่ได้ปิด "
|
|
|
|
|
Date :
2014-09-12 14:54:28 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|