Home > php教程 > php手册 > 一个简单的(也可以说是不完全的)IMAP类和应用。(二)

一个简单的(也可以说是不完全的)IMAP类和应用。(二)

WBOY
Release: 2016-06-21 09:12:56
Original
1513 people have browsed it

use_imap.php (前面那个应该是 imap_new.php)




PHP WebMail System



include("imap_new.php");
$imap=new myimap;
$imap->hostname="192.168.100.13";
$imap->port=110;
$imap->username="Alpha";
$imap->userpwd="enter";
$imap->open();
$imap->CheckMailBox();
//$imap->GetMailStructure($imap->inStream,1);
@$imap->close();

?>




Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template