欢迎光临
我们一直在努力

为imail和mdaemon设计webmail—保存附件(saveatt.asp)_imail server

建站超值云服务器,限时71元/月

为imail和Mdaemon设计Webmail—保存附件(saveatt.asp)
<%@ Language=VBScript %>
<%
*********************************

这是保存附件所调用的文件,要用FileSystemObject组件,指定一个存放附件临时文件的目录,
  这个目录要WEB共享,把附件先保存到这里,然后用浏览器重定向这个文件实现下载

*********************************

Dim fso, tempfile
Set fso = CreateObject(“Scripting.FileSystemObject”)
Dim tfolder, tname, tfile

i=Request.QueryString(“msgid”)
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 “

连接错误: ” + CStr(x) + “

请和管理员联系”
POP3.Disconnect
Response.End
End If

x = POP3.DownloadMessages(0)
If x <> 0 Then
Response.Write “下载错误: ” + CStr(x) +”

请和管理员联系”
POP3.Disconnect
Response.End
End If

pop3.TempDirectory=”e:\webmail\mailatt\” 定义一个存放附件临时文件的绝对路径,这个目录必须WEB共享
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

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 为imail和mdaemon设计webmail—保存附件(saveatt.asp)_imail server
分享到: 更多 (0)