当前位置: 首页 > 图文教程 > 网络编程 > ASP > 用EasyMailObject组件处理Exchange邮件源代码(4)

ASP
用ASP发 WAP MAIL(-)
使用纯粹的asp+语言制作的栏目管理(一)
使用ASP方便的建立自己网站的每日更新
中文虚拟域名实现(1) (环境:中文NT)
中文虚拟域名实现(2) (环境:中文NT)
中文虚拟域名实现(3) (环境:中文NT)
最简单的ASP聊天室(附源码)
Win2k IIS 远程执行命令漏洞
搜索按钮(客户端表单)
转换字符串带有http://的超级链接字符串为真正的超级链接(源码)
第一个ASP组件:设置服务器日期时间组件
虹雨的功能较全的计数程序
下拉框连动的小例子(数据库版)
下拉框连动的小例子(.htm版)
纯ASP上传图像文件到数据库的最佳例子
数组数据排序的程序例子
网络精英计数器源程序
全文本检索的应用(1)
全文本检索的应用(2)
全文本检索的应用(3)

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 130 ::
收藏到网摘: n/a

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

<%@ Language=VBScript %>
<%
'*************************************

'这个文件是删除邮件时调用的
'作者:awayeah
'邮箱:[email protected]

'*************************************

dim cc,cc1,sep,dd
'取得邮件总数
msgcount = session("msgcount")
sep=","

for i=1 to msgcount
dd="c"+cstr(i)
msgid=cstr(Request.Form (dd))
if msgid="" then
cc1=cc1+msgid
else
cc1=cc1+msgid+sep
end if
next

if len(cc1)=0 then
Response.Redirect "maillist1.asp"
end if
cc1=left(cc1,len(cc1)-1)
dim arr
arr=split(cc1,",")
   Set POP3 = CreateObject("EasyMail.POP3.5")
   pop3.account=session("straccount")
   pop3.password=session("strpassword")
   POP3.MailServer = "192.9.200.89"
   POP3.LicenseKey = "awa/S19I500R1AX30C0R3100"

   x = POP3.Connect()
for i=0 to ubound(arr)
arr(i)=clng(arr(i))
   y = POP3.DownloadHeaders

   '删除邮件

   x = POP3.DeleteSingleMessage(arr(i))

   If x <> 0 Then
'      Response.Write "<p align=center><br><br>删除邮件发生错误( " + CStr(x) + ").请与管理员联系.<br><br>"
'      Response.Write "<a href='maillist1.asp'>返回</a></p>"
      POP3.Disconnect
      Response.End
   Else
      'Response.Write "Message deleted successfully."
      'Response.Write ""
      'POP3.Disconnect
   End If
next
POP3.Disconnect
Response.Redirect "maillist1.asp"
%>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
</body>
</html>