批量发送电子邮件并回复

发布于 2024-09-10 13:01:21 字数 316 浏览 4 评论 0原文

我想使用 SwiftMail 或任何类似系统发送批量邮件。 SwiftMailer 文档指出:

“每个邮件收件人都会收到一份不同的副本,其中“收件人:”字段中仅包含他们自己的电子邮件地址。返回一个整数,其中包括成功收件人的数量。”

http://swiftmailer.org/docs/batchsend-method

我想知道是否可以找到找出哪些电子邮件地址失败,并可选择获取错误原因/代码。

I want to send out batch mails using SwiftMail or any similar system. The SwiftMailer docs state that:

"Each recipient of the messages receives a different copy with only their own email address on the To: field. An integer is returned which includes the number of successful recipients."

http://swiftmailer.org/docs/batchsend-method

I want to know whether it's possible to find out which email addresses failed, and optionally obtain the error reason/code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单调的奢华 2024-09-17 13:01:21

说明中还有另一页讨论了 batchsend() 失败 http://swiftmailer.org/docs /finding-failures 并且有一个 示例我怀疑批量发送将以完全相同的方式完成

$mailer = Swift_Mailer::newInstance( ... );

$message = Swift_Message::newInstance( ... )
  ->setFrom( ... )
  ->setTo(array(
    '[email protected]' => 'Receiver Name',
    '[email protected]' => 'A name',
    '[email protected]' => 'Other Name'
  ))
  ->setBody( ... )
  ;

//Pass a variable name to the send() method
if (!$mailer->send($message, $failures))
{
  echo "Failures:";
  print_r($failures);
}

/*
Failures:
Array (
  0 => [email protected],
  1 => [email protected]
)
*/

There's a another page in the instructions there that talks about batchsend() failures http://swiftmailer.org/docs/finding-failures and there is an example, and I suspect batchsend will be done exactly the same way.

$mailer = Swift_Mailer::newInstance( ... );

$message = Swift_Message::newInstance( ... )
  ->setFrom( ... )
  ->setTo(array(
    '[email protected]' => 'Receiver Name',
    '[email protected]' => 'A name',
    '[email protected]' => 'Other Name'
  ))
  ->setBody( ... )
  ;

//Pass a variable name to the send() method
if (!$mailer->send($message, $failures))
{
  echo "Failures:";
  print_r($failures);
}

/*
Failures:
Array (
  0 => [email protected],
  1 => [email protected]
)
*/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文