使用 php 从 Cpanel 服务器获取邮件

问题描述 投票:0回答:0

我想在 cpanel 上获取电子邮件的收件箱,并将内容显示在 html 或 php 页面上。我尝试了在堆栈溢出时在这里看到的 IMAP 代码,但我是 IMAP 的新手,不知道如何继续,这是代码:

` $inbox = imap_open('{'.$domainURL.':143/notls}INBOX',$emailAddress,$emailPassword) or die('无法连接到域:'.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>');

/* END MESSAGE COUNT CODE */

echo('<a href="http'.($useHTTPS ? 's' : '').'://'.$domainURL.':'.($useHTTPS ? '2096' : '2095').'/login/?user='.$emailAddress.'&pass='.$emailPassword.'&failurl=http://'.$domainURL.'" target="_blank">Click here to open your inbox.</a>');

`

即使不使用 IMAP,我如何实现这一目标

php html email cpanel
© www.soinside.com 2019 - 2024. All rights reserved.