$sql="select j.job_no from job j
where j.job_no not in (select ss.job_no from sub_bill ss )";
$dbquery = mysql_db_query($dbname,$sql);
while($row = mysql_fetch_array($dbquery)){
//echo "<br>";
$job_no = $row[job_no];
require_once('phpmailer/class.phpmailer.php');
$mail = new PHPMailer();
$mail->CharSet="UTF-8"; //กำหนด ภาษา
$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 = ""; // GMAIL username
$mail->Password = ""; // GMAIL password
$mail->From = ""; // "[email protected]";
$mail->FromName = "JOB ORDER"; // set from Name
$mail->Subject = "JOB ORDER"." "."ส่ง UPDATE INVOICE ที่สามารถวางบิลได้ ด่วน !!";
$mail->Body = "$message"." "."$job_no";
//$mail->AddAddress([email protected]); // to Address
$mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low
//
$mail->Send();
}
คือประเด็นคือผมจะดึง $job_no ทั้งหมดที่มีอยู่ใน DB มาใส่ในส่วน Body ของ Email แต่ Email มันดันส่งมาหลายฉบับ ตาม $job_no ที่มีอยู่ใน DB แทนที่จะส่งมาแค่ฉบับเดียวแต่ดึงข้อมูล $job_no จากใน DB มาใส่ใน body อะครับ รบกวนช่วยทีครับ