Sends the Quit command to the server. The server then commits the transaction by physically deleting all marked messages. Use WebPopShutdown after WebPopQuit to close the Internet connection.
WebAPI.bdh
WebPopQuit( in hPop: number ): boolean;
true if the response was successfully received and the server confirmed with "+OK"
false otherwise
Parameter | Description |
---|---|
hPop | Handle to a Web connection that was created by WebPopConnect |
dcltrans transaction TWebPop3 const USERNAME := "username"; PASSWORD := "password"; var hPop, nMessages, nSize: number; begin WebPopConnect(hPop, "standardhost", WEB_PORT_POP3); WebPopUser(hPop, USERNAME); WebPopPass(hPop, PASSWORD); WebPopStat(hPop, nMessages, nSize); WebPopList(hPop, IGNORE); WebPopRset(hPop); WebPopQuit(hPop); WebPopShutdown(hPop); end TWebPop3;
WebMulti01.bdf
eMail.sep