imap_open()如何与本地文件一起使用

时间:2016-03-03 10:19:12

标签: php imap

我正在尝试使用BMH阅读退回电子邮件。尝试使用IMAP登录邮箱的方法工作正常。但是当我尝试使用LocalFile方法时,我得到了后面提到的错误。

以下是我在此处找到的功能:Open local mbox mail archive with imap_open() in PHP

function openLocal($file_path) 
{     
    $mbox = imap_open("$file_path",'','');
    if (!mbox) 
    {
         $errorMsg = imap_last_error(); // do something with the error...
         return false;
    }
    else
    {
         return true;
    }
  }

使用$file_path = '/home/mailbox/';我收到以下错误:

  

无法打开/ home / abhinav / mailbox:不是可选择的邮箱

如何解决此错误?

0 个答案:

没有答案