批量发送电子邮件并回复
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
说明中还有另一页讨论了 batchsend() 失败 http://swiftmailer.org/docs /finding-failures 并且有一个 示例,我怀疑批量发送将以完全相同的方式完成。
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.