在ASP中用EasyMailObject组件处理Exchange邮件源代码(1)

object|源代码

读取邮件主题和大小(maillist1.asp)
<%@ LANGUAGE="VBSCRIPT" %>
<%
'************************************************

'这个文件列出所有邮件,并把邮件内容显示窗口置为空白窗口
'作者:awayeah
'邮箱:awayeah@163.net

'************************************************
%>
<script language=vbscript>
parent.frmbottom.location.href="blank.htm"
sub cmdel_onClick()
'删除邮件
frmail.submit
end sub
</script>
<%
if session("straccount")="" or session("strpassword")="" then
Response.write("<html><title>错误,尚未登录</title><body><p align=center><br><br>你尚未登录,请先退出登录!<br><br>")
Response.Write ("<a href='login.asp' target='_top'><img src='http://www.163design.net/a/f/logout.jpg' border=0></a></p></body></html>")
Response.End
end if
%>
<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=120

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">
<center>
<table border="1" width="580" cellspacing="0" cellpadding="0" bordercolor="#000080" bgcolor="#FFFFFF">
<tr><td colspan=6 align="center">
<%
'分页处理
if Request.QueryString("currentpage")="" then
cp=1
else
cp=Request.QueryString("currentpage")
end if
'得到邮件总数
m_count=POP3.Messages.Count
if m_count<=10 then
pagenum=1
sd=1
ed=m_count
else
pagenum=int(m_count/10)+1
if clng(cp)<>pagenum then
lastpage=m_count mod 10
sd=(clng(cp)-1)*10+1
ed=clng(cp)*10
else
sd=(clng(cp)-1)*10+1
ed=m_count
end if
end if
%>
你有<font color="ff00ff"><%=POP3.Messages.Count%></font>封邮件。</td>
<%session("msgcount")=POP3.Messages.Count%>
</tr>
<tr>
<td align="center" width="20">号</td>
<td align="center" width="120">来自/回复</td>
<td align="center" width="270">主题</td>
<td align="center" width="90">日期</td>
<td align="center" width="60">大小</td>
<td align="center" width="20">选择</td>
</tr>
<%for i= sd to ed%>

<tr>
<td align="center" width="20"><%=i%></td>
<%
fw="回复:"+replace(POP3.messages.item(i).subject,space(1),"_")
%>
<td width="100">
<%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=&quo

时间: 2024-08-31 02:40:56

在ASP中用EasyMailObject组件处理Exchange邮件源代码(1)的相关文章

在ASP中用EasyMailObject组件处理Exchange邮件源代码(2)

object|源代码 读取邮件内容和附件(showbody1.asp)<%@ LANGUAGE="VBSCRIPT" %><%'************************************************ '这个文件显示邮件的内容和附件'作者:awayeah'邮箱:awayeah@163.net '************************************************%> <html><head&g

在ASP中用EasyMailObject组件处理Exchange邮件源代码(7)

object|源代码 这些代码是针对Microsoft Exchange Server 5.5开发的,对服务器不一定可用,我在Imail 7.04上就用不了,可能是因为两个服务器对邮件的处理有点不同,譬如在Exchange上每个邮件都有一个唯一的ID,是不变的.但在Imail上就不一样了,它的邮件ID是可变的,譬如你有20封邮件,它就是从1排到20,如果你删掉了第17封,那第18封开始的ID就会自动减1. 保存附件的那个目录必须有足够的权限,而且必须WEB共享,当断开连接后那些临时文件会自动删除

在ASP中用EasyMailObject组件处理Exchange邮件源代码(4)

object|源代码 删除邮件时调用的文件(mail_prc.asp)<%@ Language=VBScript %><%'************************************* '这个文件是删除邮件时调用的'作者:awayeah'邮箱:awayeah@163.net '************************************* dim cc,cc1,sep,dd'取得邮件总数msgcount = session("msgcount"

在ASP中用EasyMailObject组件处理Exchange邮件源代码(5)

object|源代码 发送邮件(p_sendmail.asp)<%@ Language=VBScript %><%'************************************* '这个文件用来发送邮件'作者:awayeah'邮箱:awayeah@163.net '************************************* if session("straccount")="" or session("strp

在ASP中用EasyMailObject组件处理Exchange邮件源代码(6)

object|源代码 发送邮件的界面(sendmail1.asp)<%@ LANGUAGE="VBSCRIPT" %><%'************************************* '这个文件是发送邮件或回复邮件的界面'作者:awayeah'邮箱:awayeah@163.net '************************************* '取得回信地址replyaddr=Request.QueryString("addr&

在ASP中用EasyMailObject组件处理Exchange邮件源代码---读取邮件内容和附件(

<%@ LANGUAGE="VBSCRIPT" %><%'************************************************'这个文件显示邮件的内容和附件'作者:awayeah'邮箱:awayeah@163.net'************************************************%><html><head><title>读邮件</title></h

在ASP中用EasyMailObject组件处理Exchange邮件源代码---删除邮件时调用的文件

<%@ Language=VBScript %><%'*************************************'这个文件是删除邮件时调用的'作者:awayeah'邮箱:awayeah@163.net'*************************************dim cc,cc1,sep,dd'取得邮件总数msgcount = session("msgcount")sep=","for i=1 to msgcount

在ASP中用EasyMailObject组件处理Exchange邮件源代码(3)

object|源代码 保存附件(saveatt.asp)<%@ Language=VBScript %><%'************************************* '这个文件用来下载附件'作者:awayeah'邮箱:awayeah@163.net '************************************* Dim fso, tempfileSet fso = CreateObject("Scripting.FileSystemObject

用EasyMailObject组件处理Exchange邮件源代码(1)

在ASP中用EasyMailObject组件处理Exchange邮件源代码---读取邮件主题和大小(maillist1.asp) <%@ LANGUAGE="VBSCRIPT" %><%'************************************************ '这个文件列出所有邮件,并把邮件内容显示窗口置为空白窗口'作者:awayeah'邮箱:awayeah@163.net '*********************************