|
The HTTP Mail is a component from the Clever Internet .NET Suite library. It allows you to send and retrieve mail messages to your local computer and control the mail server mailboxes via HTTP Mail protocol - RFC 2518.
An implementation of such HTTP Mail protocol can be seen at Microsoft HotMail.
- 100% managed code
- Send and Retrieve messages
- List and Delete messages
- Manage mail folders
- Mark / Unmark message read status
- Notification Events, including message sending/retrieving progress
- Free one year upgrades and support
httpMail1.GetFolders(); httpMail1.SelectFolder(httpMail1.Inbox); if(httpMail1.Messages.Count > 0) { httpMail1.Retrieve(httpMail1.Messages[0].Href, mailMessage); } |
| httpMail1.Send(mailMessage); |
Please see the Demos code (HotMailClient) 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.
|