I am attempting to simply delete mail from a pop server using the following code, I 
receive no error messages, when processing yet the message are not being deleted any 
ideas?

<!---Once message is already retrieved, delete if checked --->

<FORM ACTION="inbox.cfm?GetMessages=yes" METHOD="POST">
<CFOUTPUT>
  <INPUT TYPE="hidden" NAME="mailServer"
  VALUE="mail.gosonic.com">
  <INPUT TYPE="hidden" NAME="userName" VALUE="#userName#">
  <INPUT TYPE="hidden" NAME="password" VALUE="#password#">
</CFOUTPUT>
<INPUT TYPE="Submit" NAME="Delete" VALUE="Delete">
</TD>
</TR></TABLE>
 <cfif IsDefined("Form.chkDel")>
 <CFPOP SERVER="mail.gosonic.com" USERNAME="#userName#" 
   PASSWORD="#password#" ACTION="delete" MESSAGENUMBER="#Form.chkDel#" 
NAME="getDetail">
   <CFOUTPUT QUERY="getDetail">
   </CFOUTPUT>  
 </CFIF></FORM>
<!--- End Delete Email --->

Thanks
-Paul

______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to