PHP - 查询待处理消息的数据库并调用PHPmailer而不刷新

时间:2012-02-10 11:37:29

标签: php ajax

我正在使用phpMailer,我有一个数据库表“list”,列id | name | email | status。

我目前正在做的是使用phpMailer示例

date_default_timezone_set('America/Toronto');

require_once('../class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail                = new PHPMailer();

$body                = file_get_contents('contents.html');
$body                = eregi_replace("[\]",'',$body);
$id = $_GET['id'];

$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host          = "smtp1.xample.com;smtp2.xample.com";
$mail->SMTPAuth      = true;                  // enable SMTP authentication
$mail->SMTPKeepAlive = true;                  // SMTP connection will not close after each email sent
$mail->Host          = "mail.example.com"; // sets the SMTP server
$mail->Port          = 25;                    // set the SMTP port for the GMAIL server
$mail->Username      = "no-reply@example.com"; // SMTP account username
$mail->Password      = "password";        // SMTP account password
$mail->SetFrom('no-reply@example.com', 'Honda example');
$mail->AddReplyTo('no-reply@example.com', 'Honda example');

$mail->Subject       = "PHPMailer Test Subject via smtp, basic with authentication";

@MYSQL_CONNECT("localhost","root","password");
@mysql_select_db("osher");
$query  = "SELECT full_name, email, photo FROM employee WHERE id=$id";
$result = @MYSQL_QUERY($query);

while ($row = mysql_fetch_array ($result)) {
  $mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
  $mail->MsgHTML($body);
  $mail->AddAddress($row["email"], $row["full_name"]);
  $mail->AddStringAttachment($row["photo"], "YourPhoto.jpg");

  if(!$mail->Send()) {
    echo "Mailer Error (" . str_replace("@", "&#64;", $row["email"]) . ') ' . $mail->ErrorInfo . '<br />';
  } else {
    echo "Message sent to :" . $row["full_name"] . ' (' . str_replace("@", "&#64;", $row["email"]) . ')<br />';
  }
  // Clear all addresses and attachments for next loop
  $mail->ClearAddresses();
  $mail->ClearAttachments();
}

现在上面的代码是db-email.php如果我的表格,电子邮件中有超过100个状态为待处理的条目,我希望能够使用php。选择每行ID并调用db-email.php?id=xx(其中x是id),因此电子邮件将被发送。

如果手动完成,这样可以正常工作。

我需要你们帮助我,我能够最好地自动化这个过程,即能够推送这100封电子邮件(无需刷新页面)

假设,我在email.php我可以点击(一个按钮),它只是开始处理,电子邮件表中的每一行,(而不是echo'n结果)我将是更新数据库,状态为='sent'

我不确定我是否已经非常清楚我想问的问题,请帮助朋友。 我相信具有jQuery / AJAX专业知识的人可以帮助我完成这项任务:)

1 个答案:

答案 0 :(得分:0)

我不确定您尝试做什么但是,您无法通过 javascript jquery 对数据库或服务器执行任何操作,因为已执行浏览器不在服务器上 您可以使用ajax来调用服务器上的某些.php文件,并使用一些参数来完成工作!