|
The IMAP Client is a component from the Clever Internet .NET Suite library. It allows you to download/upload mail messages and manage folders on the mail server via the IMAP4 protocol as specified in RFC 1730 and RFC 2060 documents.
- 100% managed code
- Download and upload messages
- Manage IMAP folders, List, Search, Delete messages
- Authentication with different methods: LOGIN, CRAM-MD5, NTLM
- Secure your IMAP sessions using TLS and SSL protocol
- Notification Events, including message downloading and uploading progress
- Custom IMAP commands and enhanced status codes
The IMAP component allows you to Create, Rename and Delete folders on IMAP server. It has support for a tree-like folder structure and allows you to Subscribe or Unsubscribe interested folders (mailboxes) on the server.
imap.SelectMailBox("INBOX"); imap.RetrieveMessage(messageNo, mailMessage); |
| imap.AppendMessage(mailBoxName, mailMessage, MailMessageFlags.Draft); |
MailMessageFlags flags = imap.GetMessageFlags(messageNo); imap.SetMessageFlags(messageNo, SetFlagsMethod.Add, MailMessageFlags.Flagged) |
Please see the Demos code (ImapClient, ImapClientSSL) and also the indexed Help documentation provided with the Clever Internet .NET Suite installation to learn more about using this component in your application.
When Purchasing the Clever Internet .NET Suite you receive the full sources for all suite components and also free unlimited support.
|