这是保存附件所调用的文件,要用FileSystemObject组件,指定一个存放附件临时文件的目录, ********************************* Dim fso, tempfile i=Request.QueryString(“msgid”) 连接错误: ” + CStr(x) + “ 请和管理员联系” x = POP3.DownloadMessages(0) 请和管理员联系” pop3.TempDirectory=”e:\webmail\mailatt\” 定义一个存放附件临时文件的绝对路径,这个目录必须WEB共享
<%
*********************************
这个目录要WEB共享,把附件先保存到这里,然后用浏览器重定向这个文件实现下载
Set fso = CreateObject(“Scripting.FileSystemObject”)
Dim tfolder, tname, tfile
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 “
POP3.Disconnect
Response.End
End If
If x <> 0 Then
Response.Write “下载错误: ” + CStr(x) +”
POP3.Disconnect
Response.End
End If
pp=”e:\webmail\mailatt\”
j=(request.querystring(“attid”)) 得到邮件ID
fn=”e:webmail\mailatt\” + pop3.messages.item(i).Attachments.item(j).filename
aa=pop3.messages.item(i).Attachments.item(j).save(fn,1) 保存附件到指定目录
path=”http://www.mydomain.com/webmail/mailatt/”+pop3.messages.item(i).Attachments.item(j).filename 重定向到这个附件文件
Response.Redirect path
为imail和Mdaemon设计Webmail—保存附件(saveatt.asp)
<%@ Language=VBScript %>