Use EasyMailObject component to process Exchange mail source code in ASP---file called when deleting mail (mail_prc.asp)
<%@ Language=VBscript %>
<%
'******************************************
'This file is called when deleting the email
'Author: awayeah
'Email: [email protected]
'******************************************
dim cc,cc1,sep,dd
'Get the total number of emails
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 ubund(arr)
arr(i)=clng(arr(i))
y = POP3.DownloadHeaders
'Delete the email
x = POP3.DeleteSingleMessage(arr(i))
If x <> 0 Then
'Response.Write "<p align=center><br><br>An error occurred when deleting the email ( " + CStr(x) + "). Please contact the administrator.<br><br>"
'Response.Write "<a href='maillist1.asp'>Return</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>