<tfoot id='4FXXO'></tfoot>
<i id='4FXXO'><tr id='4FXXO'><dt id='4FXXO'><q id='4FXXO'><span id='4FXXO'><b id='4FXXO'><form id='4FXXO'><ins id='4FXXO'></ins><ul id='4FXXO'></ul><sub id='4FXXO'></sub></form><legend id='4FXXO'></legend><bdo id='4FXXO'><pre id='4FXXO'><center id='4FXXO'></center></pre></bdo></b><th id='4FXXO'></th></span></q></dt></tr></i><div id='4FXXO'><tfoot id='4FXXO'></tfoot><dl id='4FXXO'><fieldset id='4FXXO'></fieldset></dl></div>
    1. <small id='4FXXO'></small><noframes id='4FXXO'>

        <bdo id='4FXXO'></bdo><ul id='4FXXO'></ul>
      <legend id='4FXXO'><style id='4FXXO'><dir id='4FXXO'><q id='4FXXO'></q></dir></style></legend>

        在 php 中检索退回邮件?

        Retrieve of the bounce mail in php?(在 php 中检索退回邮件?)
      1. <i id='p2IhC'><tr id='p2IhC'><dt id='p2IhC'><q id='p2IhC'><span id='p2IhC'><b id='p2IhC'><form id='p2IhC'><ins id='p2IhC'></ins><ul id='p2IhC'></ul><sub id='p2IhC'></sub></form><legend id='p2IhC'></legend><bdo id='p2IhC'><pre id='p2IhC'><center id='p2IhC'></center></pre></bdo></b><th id='p2IhC'></th></span></q></dt></tr></i><div id='p2IhC'><tfoot id='p2IhC'></tfoot><dl id='p2IhC'><fieldset id='p2IhC'></fieldset></dl></div>

        • <small id='p2IhC'></small><noframes id='p2IhC'>

            <tfoot id='p2IhC'></tfoot>

            1. <legend id='p2IhC'><style id='p2IhC'><dir id='p2IhC'><q id='p2IhC'></q></dir></style></legend>
                <bdo id='p2IhC'></bdo><ul id='p2IhC'></ul>
                  <tbody id='p2IhC'></tbody>

                • 本文介绍了在 php 中检索退回邮件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用 swift mailer ,它只为我提供失败邮件的选项,即表示邮件是否投递到外发邮件服务器(发送过程后不报告).所以我想办法告诉我是否有退回邮件.我找到了 zend 和 phpmailer BHM,phpmailer 有一段时间没有更新(2009 年),那么 zend 最佳选择是否可以帮助我做到这一点,或者我可以通过一些 php 编码来做到这一点?谢谢

                  I am using swift mailer , which only provide me opition of failure mail, that is, indicate whether the mail delivered to outgoing mail server (not report after sending process). So i am finding any way to tell me whether there is bounce mail. I find zend and phpmailer BHM, the phpmailer has not updated for a while (2009) , so would zend the best choice can help me doing this or i can do it by some coding in php? Thank you

                  参考:

                  1.Zendhttp://framework.zend.com/manual/en/

                  2.phpmailer BMHhttp://phpmailer.worxware.com/index.php?pg=bmh

                  2.phpmailer BMH http://phpmailer.worxware.com/index.php?pg=bmh

                  推荐答案

                  要处理退回的邮件,Zend Framework 仅在您将所有退回的邮件发送到某个真实邮箱的某个位置时才有帮助,然后您可以使用 Zend_Mail 连接到邮箱,并阅读所有邮件并查找弹跳.否则,在我看来,它没有任何东西可以让您更轻松地处理在 PHP 或其他库中无法做到的反弹.

                  To process bounced messages, Zend Framework would only be helpful if you had all bounced messages go to a real mailbox somewhere, and then you could use Zend_Mail to connect to the mailboxes, and read all of the messages and look for bounces. Otherwise, in my opinion it doesn't have anything that would make it any easier to process bounces that you couldn't do in PHP or other libraries.

                  以上当然是一个很好的解决方案.

                  The above is certainly a good solution to this.

                  或者,您可以将特定电子邮件地址的所有传入邮件通过管道传输到 PHP 脚本(或者它不必是 PHP).此脚本将能够读取 stdin 以获取电子邮件消息的内容.然后,您可以使用诸如 mailparse 之类的内容将消息解析为 mime 部分,以使其更易于处理标题和消息.不需要使用这样的解析器,但它会使处理退回电子邮件的任务更容易.要执行类似操作,请搜索 pipe mail to php或类似.

                  Alternatively, you can have all incoming mail for a particular email address piped to a PHP script (or it doesn't have to be PHP). This script would be able to read stdin to get the contents of the email message. You could then use something like mailparse to parse the message into mime parts to make it easier to process the headers and messages. Using such a parser is not required, however it would make the task of processing bounced emails easier. To do something like that, search for pipe mail to php or similar.

                  这个答案还提供了一些很好的信息,说明邮件服务器将使用哪些地址将退回邮件发送回.

                  This answer also provides some good information on which address mail servers will use to send bounces back to.

                  这篇关于在 php 中检索退回邮件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                      <tbody id='zx9rk'></tbody>
                      <legend id='zx9rk'><style id='zx9rk'><dir id='zx9rk'><q id='zx9rk'></q></dir></style></legend>

                    • <tfoot id='zx9rk'></tfoot>
                    • <small id='zx9rk'></small><noframes id='zx9rk'>

                      1. <i id='zx9rk'><tr id='zx9rk'><dt id='zx9rk'><q id='zx9rk'><span id='zx9rk'><b id='zx9rk'><form id='zx9rk'><ins id='zx9rk'></ins><ul id='zx9rk'></ul><sub id='zx9rk'></sub></form><legend id='zx9rk'></legend><bdo id='zx9rk'><pre id='zx9rk'><center id='zx9rk'></center></pre></bdo></b><th id='zx9rk'></th></span></q></dt></tr></i><div id='zx9rk'><tfoot id='zx9rk'></tfoot><dl id='zx9rk'><fieldset id='zx9rk'></fieldset></dl></div>

                          <bdo id='zx9rk'></bdo><ul id='zx9rk'></ul>