我意识到batchEmail不再是新SwiftMailer的一部分。所以我制作了这个脚本:
<?
//
// GC PRESS EMAILER v5
//
ini_set('display_errors',1);
error_reporting(E_ALL);
require_once("config.php");
include_once("hawkmail/mail/lib/swift_required.php");
$c=mysql_connect($dbh,$dbu,$dbp);
function SendEmail(){
// DB
$s=mysql_query("SELECT * FROM `newgc`.`press_list`");
// Process Color Listing Loop
while($r=mysql_fetch_array($s)){
// ###########################
// START LOOP
// ###########################
$name=$r['name'];
$email=$r['email'];
$to=array(''.$email.''=>''.$name.'');
include("hawkmail/templates/press.php");
# Email subject
$str=$name;
$str=substr($str, 0, strrpos($str, ' '));
$subject='Dear '.$str.', you are invited to our Exclusive Party Collection Press Day!';
# send message
include("hawkmail/settings.php");
}
// ###########################
// END LOOP
// ###########################
}
SendEmail();
?>
该数据库有200条记录。我运行了脚本,它发送了几封电子邮件,然后超时
504网关超时
name
和email
记录类似
约翰·史密斯John.smith@site.com
非常简单。我的hawkmail/settings.php
是这样的:
# mail
$smpturl="smtp.sendgrid.net";
$mailu="sitesitesite";
$mailp="sitessssssssssss";
$from=array("no-reply@site.com"=>"site.com");
# login credentials & setup Swift mailer parameters
$transport=Swift_SmtpTransport::newInstance($smpturl, 587);
$transport->setUsername($mailu);
$transport->setPassword($mailp);
$swift=Swift_Mailer::newInstance($transport);
# create a message (subject)
$message=new Swift_Message($subject);
# attach the body of the email
$message->setFrom($from);
$message->setBody($html, 'text/html');
$message->setTo($to);
$message->addPart($text, 'text/plain');
# actually send the message
if($recipients=$swift->send($message, $failures)){}else{}
有没有增加PHP超时的限制(我使用Ubuntu和Nginx),或者有没有BatchMail()的替代品?真的不明白为什么它被删除了。
有人可以使用新的swiftmailer发布批处理邮件脚本的示例吗
在线发送电子邮件是最复杂的事情。
它是第二大使用率和滥用率最高的服务。
我建立了自己的自定义电子邮件平台,用于发送批量电子邮件。
您遇到的超时是由于Apache和PHP的执行限制。
您需要将其作为带有set_time_limit (0);
的CLI应用程序运行
php /path/to/app/script.php
类似于控制台中的内容。
如果您没有SSH访问权限,那么使用shell_exec
运行它,如下所示:
shell_exec("php /path/to/app/script.php > /dev/null 2>/dev/null &");
这将确保调用它的脚本在完成之前不会挂起。