views:

36

answers:

1

Hi,

i have this WCF application which is hosted as a windows service. This service has to download mails which have CSV attached to them from a pop3 account. After getting that CSV i have to delete that mail from the pop3 account so that it is not downloaded again. How can i do it?

Please help.

+1  A: 

Send DELE 1 command

If the message you want to delete has the ID 1

Look at this class for more answers.

Pierre 303
I am sending DELE 1 and i am getting the response +OK message 1 marked for deletion, but deletion is not taking place.
Sidharth
It is marked for deletion. Send QUIT command to apply.
Pierre 303