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

ASP
asp数个使用技巧
存储过程里的递归 实现方法
非常不错的列出sql服务器上所有数据库的asp代码
防范ASP木马的十大基本原则强列建议看下
雷客图ASP站长安全助手的ASP木马查找功能
防止别人盗链的好方法推荐
图片的入库与读取的方法
用asp实现无组件生成验证码的方法2种
用asp实现检测文件编码
[asp]怎么添加验证码的解决方法
ASP文章系统解决方案实现上一页下一页
ASP编程入门进阶(三):接触脚本程序
ASP编程入门进阶(四):内置对象Request
ASP编程入门进阶(五):内置对象Response
ASP编程入门进阶(六):Cookies讲座
ASP编程入门进阶(八):内置对象Session
ASP编程入门进阶(九):内置对象Application
ASP编码优化技巧8则
ASP编程入门进阶(十):Global.asa文件
ASP编程入门进阶(十一):Chat聊天程序

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 200 ::
收藏到网摘: 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>