ผมลองเปลี่ยนมาใช้ phpmailer เเล้วครับ
เเต่ดันขึ้น error
Port 465 ขึ้น SMTP Error: Could not authenticate.
Port 25 ขึ้น SMTP Error: Could not connect to SMTP host.
ผมเข้าไปแก้ไขในไฟล์ php.ini หาบรรทัดว่า ;extension=php_openssl.dll เอาเครื่องหมาย; ออกเเละก็ Restart Apache เเล้วครับ
ก็ยังไม่หายเลยครับ
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 = "********"; // GMAIL password
$mail->From = "[email protected]"; // "[email protected]";
//$mail->AddReplyTo = "[email protected]"; // Reply
$mail->FromName = "Mr.chanatip ajsantier"; // set from Name
$mail->Subject = "Test sending mail.";
$mail->Body = "My Body & <b>My Description</b>";
$mail->AddAddress("[email protected]", "Mr.chanatip ajsantier"); // to Address
//$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>