首页 > 开发 > PHP > 正文

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

2024-05-04 22:55:21
字体:
来源:转载
供稿:网友

showbody_imap.php

<html>
<head>
<title>biz2biz webmail system</title>
<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>
</head>
<body>
<?php
include("imap_new.php");
$imap=new myimap;
$imap->hostname="192.168.100.13";
$imap->port=110;
$imap->username=$usr;
$imap->userpwd=$pwd;
$imap->open();
$mail_structure=$imap->get_structure($msg);
//echo gettype($mail_structure->parts);
//echo count($mail_structure->parts);
$imap->proc_structure($mail_structure,"",$msg);

@$imap->close();
?>
</body>
</html>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表