<?php
require_once("PHPMailer/PHPMailerAutoload.php");
$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->Mailer = "smtp";
$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 = 587; // set the SMTP port for the GMAIL server
$mail->Username = "xxxxxxxx@gmail.com"; // GMAIL username
$mail->Password = "xxxxxxx"; // GMAIL password
$mail->From = "xxxxxxx@gmail.com"; // "name@yourdomain.com";
//$mail->AddReplyTo = "xxxxxxxxxxxxx"; // Reply
$mail->FromName = "Mainboard Service"; // set from Name
$mail->Subject = "รหัสผ่านในการเข้าสู่ระบบสมาชิกของคุณ";
$mail->Body = "สวัสดี คุณ hhhhhhhhh <br><br>
Username ในการเข้าสู่ระบบของคุณ : ioiewwe<br>
Password ในการเข้าสู่ระบบของคุณ : erwerwrw
<br><br>
ขอบพระคุณที่เป็นสมาชิกของ";
$mail->AddAddress("xxxxxx@gmail.com", "xxxxxxx"); // to Address
$mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low
$mail->Send();
if ($mail->Send()) {
$status = "เรียบร้อยแล้ว";
} else {
$status = "ระบบไม่สามารถส่งอีเมล์ไปให้ท่านได้";
}
echo $status;
?>
ทำไม phpmailer ผมถึงใช้ไม่ได้คับ
require_once("PHPMailer/PHPMailerAutoload.php");
$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->Mailer = "smtp";
$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 = 587; // set the SMTP port for the GMAIL server
$mail->Username = "xxxxxxxx@gmail.com"; // GMAIL username
$mail->Password = "xxxxxxx"; // GMAIL password
$mail->From = "xxxxxxx@gmail.com"; // "name@yourdomain.com";
//$mail->AddReplyTo = "xxxxxxxxxxxxx"; // Reply
$mail->FromName = "Mainboard Service"; // set from Name
$mail->Subject = "รหัสผ่านในการเข้าสู่ระบบสมาชิกของคุณ";
$mail->Body = "สวัสดี คุณ hhhhhhhhh <br><br>
Username ในการเข้าสู่ระบบของคุณ : ioiewwe<br>
Password ในการเข้าสู่ระบบของคุณ : erwerwrw
<br><br>
ขอบพระคุณที่เป็นสมาชิกของ";
$mail->AddAddress("xxxxxx@gmail.com", "xxxxxxx"); // to Address
$mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low
$mail->Send();
if ($mail->Send()) {
$status = "เรียบร้อยแล้ว";
} else {
$status = "ระบบไม่สามารถส่งอีเมล์ไปให้ท่านได้";
}
echo $status;
?>