-
Notifications
You must be signed in to change notification settings - Fork 2
kmribti/imap
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
IMAP client implmentation using Poco C++ framework, work are in progress but the code are quite usable for basic operations. This code has been tested only with VS2015 build type. Sample code: typedef std::vector<IMAPClientSession::FolderInfo> folders_type; try { IMAPClientSession imap(host, port); imap.login (user, password); folders_type Folders; imap.listFolders("", Folders); for (auto f: Folders) { std::cout << f.name << std::endl; } } catch (IMAPException e) { std::cout << e.message() << std::endl; }
About
IMAP Client implementation for Poco c++ framework
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published