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

ASP
如何使用ASP产生象安装向导的主页
ADO如何取得数据库中表的字段信息之一
ADO如何取得数据库中表的字段信息之二
网页计数器的程序
实验Recordset.Movenext,Recordset.Previous,Recorset...等移动记录
不能ASP图像组件来生成图像的ASP计数器程序(一)
IIS5 + ADO 2.5新先睹为快技术(一)
IIS5 + ADO 2.5新先睹为快技术(二)
如何使用 Microsoft Access 和 Active Server Pages 加密你的页面
WINDOWS 2000搭載ASP3.0和IIS5.0
IIS 5.0新功能
网络开发之编程技巧之一(有效验证用户的登录)
如何使用ASP在自己的网站建立投票机制(一)
如何使用ASP在自己的网站建立投票机制(二)
组件对象开发Web应用的实例分析
如何实现动态添加Html文档中Form项
一个BBS的源代码(一)
一个BBS的源代码(二)
一个BBS的源代码(三)
一个BBS的源代码(四)

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


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

  在ASP中用EasyMailObject组件处理Exchange邮件源代码---保存附件(saveatt.asp)

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

'这个文件用来下载附件
'作者:awayeah
'邮箱:[email protected]

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


Dim fso, tempfile
Set fso = CreateObject("Scripting.FileSystemObject")
   Dim tfolder, tname, tfile
'   Const TemporaryFolder = 2
'   Set tfolder = fso.GetSpecialFolder(TemporaryFolder)
set POP3=session("pop3")

'   Set POP3 = CreateObject("EasyMail.POP3.5")
'   POP3.LicenseKey = "awa/S19I500R1AX30C0R3100"
'   POP3.MailServer = strServer
'   POP3.Account = session("straccount")
'   POP3.Password = session("strpassword")
'   pop3.PreferredBodyFormat=1
'   pop3.TimeOut=90
   x = POP3.Connect()
   If x <> 0 Then
      Response.Write "连接错误: " + CStr(x)
      POP3.Disconnect
   End If

'设定附件存放的临时目录,要用绝对路径,这个目录应赋足够的权限给IUSR_HOST帐户,并且已经WEB共享
   pop3.TempDirectory="e:\webmail\mailatt"
   y = POP3.DownloadHeaders
   i=clng(request.querystring("msgid"))
   j=clng(request.querystring("attid"))
   msg = POP3.DownloadSingleMessage(i)
   'Set Message Object to point to that downloaded message
   Set Message = POP3.Messages(msg)
   'Message.Attachments(j).save tfolder+"/"+Message.Attachments(j).filename,1
   'Message.Attachments(j).save "c:\inetpub/\wwwroot\mailatt\"+Message.Attachments(j).filename,1
   'Response.write "file:///"+"/mailatt/"+Message.Attachments(j).filename
   pathname=Message.Attachments(j).TempFileName
   parentfolder=fso.GetParentFolderName(pathname)
   set folder=fso.GetFolder(parentfolder)
   dir_name=folder.name
   filename=fso.GetFileName(pathname)
   path="/webmail/mailatt/"+dir_name+"/"+filename
   Response.Redirect path
   %>