首页 > 开发 > PHP > 正文

用PHP读取IMAP邮件

2024-05-04 23:01:02
字体:
来源:转载
供稿:网友
//这个例子可以练习关于imap的函数
//但是如果真的要写webmail,那么要考虑的东西就不止这些了……孤狼

login.php3  
<?php  

if (!$php_auth_user) {  
header("www-authenticate: basic realm="邮件客户检查"");  
header("http/1.0 401 unauthorized");  
} else {  
$mydir=ereg_replace("/[^/]+$","",$php_self);  
header("location: $server_name$mydir/messages.php3");  
}  

?>  

这个进行用户检查并将用户引导到用户邮件页.

messages.php3  

<?php  

$mailserver="{localhost/imap}";  
$link=imap_open($mailserver,$php_auth_user,$php_auth_pw);  
$headers=imap_headers($link);  

for($x=1; $x < count($headers); $x++) {  
$idx=($x-1);  
echo "<a href="view.php3?num=$x">$headers[$idx]</a><br>";  
}  

?>  

通过验证后连接到imap服务器$mailserver

然后在取得邮件列表,并创建阅读邮件的连接

view.php3:  

<?php  

$mailserver="{localhost/imap}";  
$link=imap_open($mailserver,$php_auth_user,$php_auth_pw);  
$header=imap_header($link,$num);  

echo "from: $header[fromaddress]<br>";  
echo "to: $header[toaddress]<br>";  
echo "date: $header[date]<br>";  
echo "subject: $header[subject]<br><br>";  
echo imap_body($link,$num);  

?>  

view.php3打开imap连接并取得邮件头部信息并显示

这only是一个拿来完完的小程序,要完整的自己去写啦!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表