首页 | 邮件资讯 | 技术教程 | 解决方案 | 产品评测 | 邮件人才 | 邮件博客 | 邮件系统论坛 | 软件下载 | 邮件周刊 | 热点专题 | 工具
网络技术 | 操作系统 | 邮件系统 | 客户端 | 电子邮箱 | 反垃圾邮件 | 邮件安全 | 邮件营销 | 移动电邮 | 邮件软件下载 | 电子书下载

邮件服务器

技术前沿 | Qmail | IMail | MDaemon | Exchange | Domino | 其它 | Foxmail | James | Kerio | JavaMail | WinMail | Sendmail | Postfix | Winwebmail | Merak | CMailServer | 邮件与开发 | 金笛 |
首页 > 邮件服务器 > IMail Server > 为imail和Mdaemon设计Webmail---读取邮件信息(maillist1.asp) > 正文

为imail和Mdaemon设计Webmail---读取邮件信息(maillist1.asp)

出处:岚山夜话 作者:21eok 时间:2004-1-7 11:37:00
<%@ LANGUAGE="VBSCRIPT" %>
<%
'*********************************

'这是邮件列示窗口,列出所有邮件的发件人、主题、日期、大小等

'*********************************
%>

<script language=vbscript>
'把邮件内容显示窗口置为空窗口
parent.frmbottom.location.href="blank.htm"

sub cmdel_onClick()
frmail.submit
end sub
</script>

<html>
<head>
<title>收邮件</title>
</head>
<STYLE>
<!--
A{text-decoration:none}
-->
</STYLE>
<body bgcolor="#008080" text="#000000">
<%

strserver=session("strserver")
strAccount=session("straccount")
strPassword=session("strpassword")


Set POP3 = CreateObject("EasyMail.POP3.5")
POP3.LicenseKey = "awa/S19I500R1AX30C0R3100"
POP3.MailServer = strServer
POP3.Account = straccount
POP3.Password = strpassword
'设置邮件内容显示格式
pop3.PreferredBodyFormat=1
pop3.TimeOut=300
'连接
x = POP3.Connect
If x <> 0 Then
Response.Write "<p align=center>连接错误: " + CStr(x) + "<br><br>请和管理员联系"
POP3.Disconnect
Response.End
End If
'下载邮件信息
x = POP3.DownloadMessages(0)
If x <> 0 Then
Response.Write "下载错误: " + CStr(x) +"<br><br>请和管理员联系"
POP3.Disconnect
Response.End
End If%>
<p><br></p><form name="frmail" action="mail_prc.asp" method="POST">
<div align="center">
<table border="1" width="98%" cellspacing="0" cellpadding="0" bordercolor="#000080" bgcolor="#FFFFFF">
<tr><td colspan=6 align="center">


你有<font color="ff00ff"><%=POP3.Messages.Count%></font>封邮件。</td>
<%session("msgcount")=POP3.Messages.Count%>
</tr>
<tr>
<td align="center"> </td>
<td align="center">来自/回复</td>
<td align="center">主题</td>
<td align="center">日期</td>
<td align="center" width=40>大小</td>
<!--<td width="30"><font face="宋体" size="2">删除</font></td>-->
<td align="center">选</td>
</tr>
<%'循环显示所有邮件
for i=pop3.messages.count to 1 step -1
%>

<tr>
<td align="center"><%if POP3.Messages.item(i).attachments.count>0 then '如果这个邮件有附件则显示带附件的图标
Response.Write "<img src='icon/attach.gif' border=0>"
else
Response.Write "<img src='icon/mail.gif' border=0>"
end if
%></td>
<%
fw="回复:"+replace(POP3.messages.item(i).subject,space(1),"_")
%>
<td>
<%receiver=POP3.Messages.item(i).from
if POP3.Messages.item(i).fromaddr="" then%>
<a href="">
<%else
%>
<a href=# onClick=javascript:window.open('sendmail1.asp?addr=<%=pop3.messages.item(i).fromaddr%>&subject=<%=fw%>','sendnew','width=600,height=480,scrollbars=yes');>
<%end if%>
<%if trim(receiver)="" then
response.write "匿 名</a>"%>
<%else%>
<a href=# onClick=javascript:window.open('sendmail1.asp?addr=<%=pop3.messages.item(i).fromaddr%>&subject=<%=fw%>','sendnew','width=600,height=480,scrollbars=yes');>
<font face="宋体" size="2">
<%=POP3.Messages.item(i).From%></font>
<%end if%>
</td>
<td>
<%msgid=POP3.GetMessageID(i) '取得邮件ID%>
<a href="showbody1.asp?id=<%'=msgid%><%=i%>" target="frmbottom">
<font face="宋体" size="2">
<%'显示邮件主题
if trim(POP3.messages.item(i).Subject)="" then
response.write "无主题"
else
response.write POP3.messages.item(i).Subject
end if
%></font>
</a></td>

<td><font face="宋体" size="2"><%=POP3.messages.item(i).date%></font></td>

<td><font face="宋体" size="2"><%=POP3.messages.item(i).size%></font></td>

<td><input type="checkbox" name="c<%=i%>" value="<%=i%>"></td>
</tr>
<%next
POP3.Disconnect
' Set POP3 = Nothing
%>
</table>
</div>
<p align="center"><input type="button" name="cmdel" value="删除"></p>
</form>
</body>
</html>

相关文章 热门文章
  • 为imail和Mdaemon设计Webmail---读取邮件内容(showbody1.asp)
  • 为imail和Mdaemon设计Webmail---发送邮件界面(sendmail1.asp)
  • 为imail和Mdaemon设计Webmail---保存附件(saveatt.asp)
  • 为imail和Mdaemon设计Webmail---删除邮件调用的文件(mail_prc.asp)
  • 为imail和Mdaemon设计Webmail---说明文件及操作步骤
  • 配置IMail跟我学
  • IMailServer配置技巧-完整DNS设定(1)
  • Imail常见问题解答(1)
  • IMail操作指南(1)-安装
  • IMail 的安装和设置
  • IMail 常见问题集
  • IMail Anti-Virus簡易說明及快速安裝技巧(1)
  • IMail操作指南(2)-查看基本的IMail 服务器配置
  • IMail的发信验证
  • IMail操作指南(11)-安全设置及防止垃圾邮件
  • IMail Anti-Virus簡易說明及快速安裝技巧(2)
  • IMail操作指南(22)-附录(2)
  • 自由广告区
     
    最新软件下载
  • SharePoint Server 2010 部署文档
  • Exchange 2010 RTM升级至SP1 教程
  • Exchange 2010 OWA下RBAC实现的组功能...
  • Lync Server 2010 Standard Edition 标..
  • Lync Server 2010 Enterprise Edition...
  • Forefront Endpoint Protection 2010 ...
  • Lync Server 2010 Edge 服务器部署文档
  • 《Exchange 2003专家指南》
  • Mastering Hyper-V Deployment
  • Windows Server 2008 R2 Hyper-V
  • Microsoft Lync Server 2010 Unleashed
  • Windows Server 2008 R2 Unleashed
  • 今日邮件技术文章
  • 腾讯,在创新中演绎互联网“进化论”
  • 华科人 张小龙 (中国第二代程序员 QQ...
  • 微软推出新功能 提高Hotmail密码安全性
  • 快压技巧分享:秒传邮件超大附件
  • 不容忽视的邮件营销数据分析过程中的算..
  • 国内手机邮箱的现状与未来发展——访尚..
  • 易观数据:2011Q2中国手机邮箱市场收入..
  • 穿越时空的爱恋 QQ邮箱音视频及贺卡邮件
  • Hotmail新功能:“我的朋友可能被黑了”
  • 入侵邻居网络发骚扰邮件 美国男子被重..
  • 网易邮箱莫子睿:《非你莫属》招聘多过..
  • 中国电信推广189邮箱绿色账单
  • 最新专题
  • 鸟哥的Linux私房菜之Mail服务器
  • Exchange Server 2010技术专题
  • Windows 7 技术专题
  • Sendmail 邮件系统配置
  • 组建Exchange 2003邮件系统
  • Windows Server 2008 专题
  • ORF 反垃圾邮件系统
  • Exchange Server 2007 专题
  • ISA Server 2006 教程专题
  • Windows Vista 技术专题
  • “黑莓”(BlackBerry)专题
  • Apache James 专题
  • 分类导航
    邮件新闻资讯:
    IT业界 | 邮件服务器 | 邮件趣闻 | 移动电邮
    电子邮箱 | 反垃圾邮件|邮件客户端|网络安全
    行业数据 | 邮件人物 | 网站公告 | 行业法规
    网络技术:
    邮件原理 | 网络协议 | 网络管理 | 传输介质
    线路接入 | 路由接口 | 邮件存储 | 华为3Com
    CISCO技术 | 网络与服务器硬件
    操作系统:
    Windows 9X | Linux&Uinx | Windows NT
    Windows Vista | FreeBSD | 其它操作系统
    邮件服务器:
    程序与开发 | Exchange | Qmail | Postfix
    Sendmail | MDaemon | Domino | Foxmail
    KerioMail | JavaMail | Winwebmail |James
    Merak&VisNetic | CMailServer | WinMail
    金笛邮件系统 | 其它 |
    反垃圾邮件:
    综述| 客户端反垃圾邮件|服务器端反垃圾邮件
    邮件客户端软件:
    Outlook | Foxmail | DreamMail| KooMail
    The bat | 雷鸟 | Eudora |Becky! |Pegasus
    IncrediMail |其它
    电子邮箱: 个人邮箱 | 企业邮箱 |Gmail
    移动电子邮件:服务器 | 客户端 | 技术前沿
    邮件网络安全:
    软件漏洞 | 安全知识 | 病毒公告 |防火墙
    攻防技术 | 病毒查杀| ISA | 数字签名
    邮件营销:
    Email营销 | 网络营销 | 营销技巧 |营销案例
    邮件人才:招聘 | 职场 | 培训 | 指南 | 职场
    解决方案:
    邮件系统|反垃圾邮件 |安全 |移动电邮 |招标
    产品评测:
    邮件系统 |反垃圾邮件 |邮箱 |安全 |客户端
    广告联系 | 合作联系 | 关于我们 | 联系我们 | 繁體中文
    版权所有:邮件技术资讯网©2003-2010 www.5dmail.net, All Rights Reserved
    www.5Dmail.net Web Team   粤ICP备05009143号