【在岸人民币和离岸人民币的区别】在ASP中用EasyMailObject组件处理Exchange邮件源代码4

2017-09-11 新闻资讯 阅读:

删除邮件时调用的文件(mail_prc.asp)
<%@ language="VBScript">
<%
'*************************************

'这个文件是删除邮件时调用的
'作者:awayeah
'邮箱:awayeah@163.net

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

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 "



删除邮件发生错误( " + CStr(x) + ").请与管理员联系.

"
' Response.Write "返回

"
POP3.Disconnect
Response.End
Else
'Response.Write "Message deleted successfully."
'Response.Write ""
'POP3.Disconnect
End If
next
POP3.Disconnect
Response.Redirect "maillist1.asp"
%>

【在岸人民币和离岸人民币的区别】在ASP中用EasyMailObject组件处理Exchange邮件源代码4

http://m.hzclsc.cn/anzhuo/1854.html

推荐访问:在岸人民币 在爱的幸福国度你就是我唯一

新闻资讯推荐文章

推荐内容

上一篇:使用fso按文件夹_使用FSO按文件大小浏览文件目录并进行删除操作 下一篇:【两种电荷】两种php调用Java对象的方法