1

我正在使用PHPMailer类通过 SMTP 发送邮件:

   <?php 
require 'php_mailer/class.phpmailer.php';

    $mail = new PHPMailer;

    $mail->IsSMTP();                                      // Set mailer to use SMTP
    $mail->Host = 'smtp.dfgdfgdfg.de';              // Specify main and backup server
    $mail->SMTPAuth = true;                               // Enable SMTP authentication
    $mail->Username = 'dfgdfg';                            // SMTP username
    $mail->Password = 'dfgsdfgdsfg';                           // SMTP password
    //$mail->SMTPSecure = 'tls';                            // Enable encryption, 'ssl' also accepted

    $mail->From = 'community@fdgdfg.de';
    $mail->FromName = 'dfgdfgdg';
    $mail->AddAddress('interview@dfgdfg.de', 'Udo');  // Add a recipient
$mail->AddBCC('bcc@example.com');

    $mail->WordWrap = 50;                                 // Set word wrap to 50 characters
    $mail->IsHTML(true);                                  // Set email format to HTML

    $mail->Subject = 'HTML-Mail mit Logo';
    $mail->Body    = 'Nachfolgend das <b>Logo</b>';
    $mail->AltBody = 'Aktiviere HTML, damit das Logo angezeigt wird';

    if(!$mail->Send()) {
       echo 'Message could not be sent.';
       echo 'Mailer Error: ' . $mail->ErrorInfo;
       exit;
    }

?>

我的问题:

  1. 发送到大量邮件的最佳方式是什么(相同的 Mailtext,只是名称不同(Hello $NAME)?
  2. PHP 脚本是否要等到每封邮件都送达?因为有时我想在用户在网站上执行操作时向数百人发送邮件。所以这个用户当然不能等待,直到所有这些邮件都发送成功!

谢谢!亚历克斯

4

2 回答 2

2

您正在设置 PHPMailer 与 SMTP 交互,所以我猜它会等待它完成。这不是最佳选择,因为正如您所说,您将阻止 PHP 脚本,直到 SMTP 响应。

最好通过您的本地主机发送:将 PHPMailer 设置为使用 sendmail,它通常是本地 exim4 或 postfix 的包装器,然后它将为您处理邮件。这要好得多,因为本地服务器将处理任何可能的临时错误,并稍后重试。PHP 不会。

您可能还想探索其他选项,例如 Mandrill 或 Sendgrid 来完成这项工作,尤其是在您进行大量邮寄或批量邮寄的情况下。

于 2013-01-25T15:20:15.287 回答
1

发送到大量邮件的最佳方式是什么(相同的 Mailtext,只是名称不同(Hello $NAME)?

您可以执行类似设置名称的操作。

// rest of code first
$mail->AddAddress("you@example.com")

$ids = mysql_query($select, $connection) or die(mysql_error());
while ($row = mysql_fetch_row($ids)) {
  $mail->AddBCC($row[0]);
}

$mail->Send();//Sends the email

您可以在正文中使用特殊字符串“name_here”并$name使用str_replace函数放置

Is the PHP script waiting until every mail is delivered? Because sometimes I want to send a mail to some hundreds people, when a user is doing an action on the website. so this user cant wait of course, until all those mail were sent succesful!

是的,据我所知,您将不得不等待。

如何做一个 str_replace ?假设你的邮件正文如下

$body = " Dear %first_name%,

other stuff goes here....... ";

$body = str_replace("%first_name%", $first_name, $body); 

以上将用您提供的名称($first_name)替换 %first_name%。

于 2013-01-25T15:16:35.147 回答