好吧,这段代码“正在”完美地工作,然后我开始玩它,以便让其他人连接到他们的电子邮件,因为你因为各种拼写错误而遇到了一些开放流错误.
自从这样做以后,我根本无法连接到我的电子邮件?不久之后,我使用完全相同的连接代码,然后浏览我的收件箱.
我总是得到“警告:imap_open()[function.imap-open]:无法打开流”错误.
这很奇怪,因为我使用与以前完全相同的代码,但由于碰到错误,我现在无法连接.回应也需要很长时间.
这是代码:
$mailBox = imap_open('{mail.artisancodesmith.com:143/notls}INBox', 'admin@artisancodesmith.com', 'PASSWORD');
if ($mailBox) {
$response = "MAIL MENU:<br>
inBox: View your inBox.<br>
compose: Compose an e-mail.<br>
setup: Set your e-mail account's settings.";
$next = "iorcmail";
}
更新:
如果我用“localhost”替换“mail.artisancodesmith.com”,它会再次运行!
我最好喜欢使用我的实际IMAP主机 – 我会在将来的某个时间看看它是否会再次起作用.
感谢所有帮助过的人.