欢迎光临
我们一直在努力

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

建站超值云服务器,限时71元/月

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

<html>
<head>
<style type="text/css">
<!–
td { font-size:9pt}
a {font-szie:9pt}
body {font-size:9pt}
input {font-size:9pt}
select {font-size:9pt}
–>
</style>
<title>php webmail system</title>
</head>
<body bgcolor="#ffffff">

<?php
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();

?>

</body>
</html>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 一个简单的(也可以说是不完全的)IMAP类和应用。(二)-PHP教程,PHP应用
分享到: 更多 (0)