2

我正在为我的 cpanel webmail/roundcube/squirrelmail 中的未读邮件集成自动回复邮件。请在下面查看我的代码。问题是我面临的 imap_open 函数无法连接。它的加载也无法通过任何错误/异常加载。任何人指导我。我期待着您的回复。还要检查我的代码是否正确。


    $emailAddress = 'info@example.com'; // Full email address
    $emailPassword = 'xxxxxxxx';        // Email password
    $domainURL = 'example.com';         // Your websites domain
    $useHTTPS = false;                      

    /* BEGIN MESSAGE COUNT CODE */

    $inbox = imap_open('{'.$domainURL.':143/notls}INBOX',$emailAddress,$emailPassword) or die('Cannot connect to domain:' . imap_last_error());
    $oResult = imap_search($inbox, 'UNSEEN');

    if(empty($oResult))
        $nMsgCount = 0;
    else
        $nMsgCount = count($oResult);

    imap_close($inbox);

    echo('<p>You have '.$nMsgCount.' unread messages.</p>');
4

0 回答 0