2

我这里有个大问题!我需要向我的所有订阅者(大约 1200 人)发送时事通讯,问题是它只向其中 150-180 人发送时事通讯。我有一个在 php 中实现的脚本,它使用 PhpMailer() 类将时事通讯发送给所有订阅者。

我在 MailJet 中购买了一个计划,该计划允许我每月发送 3 万封电子邮件,因此我使用他们的 SMTP 主机发送时事通讯。

这是我的脚本:

$mail             = new PHPMailer();
$body             = $message;
$body             = eregi_replace("[\]",'',$body);

$mail->IsSMTP();
$mail->SMTPAuth   = true;
$mail->Host       = "in.mailjet.com";
$mail->Port       = 80;
$mail->Username   = "username";
$mail->Password   = "password";

// thing regarding the body, subject, etc of the email //

$to_list = explode(',',$to);
$between_delay = 75; //max limit of mails send at a slot
$send_count = 1; 
$send_delay = 1; //Delays the program execution for the given number of seconds.

ignore_user_abort(true); // Ignore user aborts and allow the script to run forever
set_time_limit(300); //to prevent the script from dying

foreach($to_list as $row){
    if ( ($send_count % $between_delay) == 0 ){
        sleep( $send_delay ); //Delays the program execution for the given number of seconds.
    }
    $address = $row;
    if(!empty($address)) {
        $mail->AddAddress($address, "User");
        $mail->Send();
        $mail->ClearAddresses(); //clear address
   }
   $send_count++;
}

if(!empty($mail->ErrorInfo)) {
     // display an error
}

我真的不知道可能是什么问题,但由于某种原因,它在大约 180 号之后停止发送电子邮件。可能是关于set_time_limit(300); ??

4

2 回答 2

2

我不建议将时事通讯的副本发送到每个单独的电子邮件地址;它浪费带宽并强制您的脚本发送消息的多个副本。

相反,请考虑使用 SMTP 服务器的密件抄送 (BCc) 功能来发送大量电子邮件。这将允许您的 SMTP 服务器优化时事通讯的传递,并且还可以节省您的带宽。

PHPMailer API 的快速查找表明您可以使用该$mailer->AddBCC()函数添加密件抄送地址。例如,$php_mailer->AddBCC('somebody@example.com', 'Joe Somebody');应该工作。

于 2012-12-29T23:35:53.103 回答
1

只是为了更新这篇文章,Mailjet现在有一个易于使用的 PHP 包装器来发送您的电子邮件并在我们新的 REST API 上执行任何请求。

您可以在此处的Github 上找到它,并在此处找到完整的文档。

于 2014-12-01T10:47:35.087 回答