我想使用phpmailer發送批量電子郵件我有超過10個電子郵件ID在我的數據庫中,當我點擊發送按鈕,然後第一封電子郵件將去一個人,第二封電子郵件將去對同一個人加上另一個人,第三個人會去那兩個再加上一個,等等。這是我的編碼,請幫我使用phpmailer發送批量電子郵件
<?php
$body=$_POST['message'];
$subject=$_POST['sub'];
//error_reporting(E_ALL);
error_reporting(E_STRICT);
date_default_timezone_set('America/Toronto');
require_once("class.phpmailer.php");
//include("class.smtp.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "stmp.gmail.com"; // SMTP server
$mail->SMTPDebug = 1; // enables SMTP debug information
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = 'ssl';
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->CharSet = "big5";
$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "**********"; // GMAIL password
$mail->SetFrom("[email protected]", ''); // set reply id
$mail->Subject = ($subject); // subject
$mail->MsgHTML("$body"); // message
$mail->AddAddress($address, "abc");
$con=mysql_connect("localhost","root","") or
die("could not connect:".mysql_error());
mysql_select_db("bulkemail");
$qry=mysql_query("SELECT * FROM email_id", $con);
if(!$qry)
{
die("Query Failed: ". mysql_error());
}
while($row = mysql_fetch_array($qry))
{
$id= $row["email"];
$address = ($id);
$mail->AddBcc($id);
$mail->send();
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
}
else {
echo "Message sent!";
}
}
?>
你確定你在數據庫中有不同的郵件嗎? –
是的,我確定我在我的數據庫中有不同的電子郵件 –
實際上,這是一個正確的行爲,一個類實例旨在發送一條消息,並且您需要爲每條新消息創建一個新類。 – kworr