You can use a IMAP component to implement this. As explained here
http://www.codeproject.com/Messages/2504247/Re-Move-a-message-into-a-folder.aspx
The IMAP commands to accomplish it looks something like this:
UID COPY messageUID "new folder"
UID STORE messageUID +FLAGS (\Deleted)
EXPUNGE
Some popular IMAP components are:
http://www.codeproject.com/Messages/2504247/Re-Move-a-message-into-a-folder.aspx
The IMAP commands to accomplish it looks something like this:
UID COPY messageUID "new folder"
UID STORE messageUID +FLAGS (\Deleted)
EXPUNGE
Some popular IMAP components are:
- IPWorks! IMAP Component from /n software http://www.nsoftware.com/products/component/imap.aspx
- Rebex Mail for .NET - http://www.rebex.net/mail.net/tutorial-imap.aspx#folders
- Chilkat IMAP .NET - http://www.chilkatsoft.com/imap-dotnet.asp
- EAGetMail POP3 & IMAP4 COMPONENT 2.5 - http://www.emailarchitect.net/eagetmail/
- Lumisoft - http://www.lumisoft.ee/lsWWW/Download/Downloads/Net/ (free)
- xemail-net - http://xemail-net.sourceforge.net (free)
Below one i am using for my development.
Download 3 rd party component from
http://www.lesnikowski.com/mail/
it will be download as .exe . Click to install to a specific directory . Latter add mail.dll in reference by browsing to installed lib directory .
Document is available here
http://www.lesnikowski.com/mail/documentation/
Download 3 rd party component from
http://www.lesnikowski.com/mail/
it will be download as .exe . Click to install to a specific directory . Latter add mail.dll in reference by browsing to installed lib directory .
Document is available here
http://www.lesnikowski.com/mail/documentation/
No comments:
Post a Comment