Site Map Contact Us Home
E-mail Newsletter
Subscribe to get informed about
Clever Components news.

Your Name:
Your Email:
 
SUBSCRIBE
 
Previous Newsletters
 




Products Articles Downloads Order Support
Customer Portal      

IMAP Client

Features | Detailed Description

The IMAP Client is a component from the Clever Internet 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.

Available in .NET, VCL and ActiveX editions.

Features:

  • Download and upload messages, Retrieve message headers
  • List, Search, Delete messages
  • Manage IMAP folders
  • 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

Manage IMAP Folders

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.

Retrieve and Append mail using a single line of code

Delphi
imap.SelectMailBox('INBOX');
imap.RetrieveMessage(messageNo, mailMessage);

imap.AppendMessage(mailBoxName, mailMessage, [mfDraft]);

// [C#]
imap.SelectMailBox("INBOX");
imap.RetrieveMessage(messageNo, mailMessage);

imap.AppendMessage(mailBoxName, mailMessage, MailMessageFlags.Draft);

Mark/unmark message flags such as seen/unseen, draft, or flagged

Delphi
flags := imap.GetMessageFlags(messageNo);
imap.SetMessageFlags(messageNo, fmAdd, [mfFlagged]);

C#
MailMessageFlags flags = imap.GetMessageFlags(messageNo);
imap.SetMessageFlags(messageNo, SetFlagsMethod.Add, MailMessageFlags.Flagged);

Samples, including WinForm clients with full source code

Please see the Demos code (ImapClient, ImapClientSSL) and also the indexed Help documentation provided with the Clever Internet Suite installation to learn more about using this component in your application.

Includes support for Delphi, C++Builder, C#, VB.NET and Javascript.

Complete Delphi and C# source code

When Purchasing the Clever Internet Suite you receive the full sources for all suite components and also free unlimited support.

Interested?

    Copyright © 2000-2024