Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) POP3: Download Most Recent Email (method 1)How to ready the N most recent email from a POP3 server. The POP3 protocol does not provide the ability to request the most recent email, nor does it provide the ability to download email based on read/unread status or any other criteria. The design principle behind POP3 is that it is a temporary holding store for incoming email and email clients or other applications will transfer email from the POP3 server to a local persistent store where it will be managed. Therefore, POP3 does not provide sophisticated functionality (as opposed to IMAP which has the opposite design philosophy: that email is maintained and organized on the server). This example shows one possible way to retrieve the N most recent emails from a POP3 server. It downloads the headers into a bundle object, then sorts the bundle by date, and finally retrieves the most recent emails by UIDL. Another alternative is to download the UIDL list and then assume that the 1st N UIDLs are the most recent.
#include <CkMailMan.h> #include <CkEmailBundle.h> #include <CkStringArray.h> #include <CkEmail.h> void ChilkatSample(void) { CkString strOut; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // The mailman object is used for receiving (POP3) // and sending (SMTP) email. CkMailMan mailman; bool success; // Set the POP3 server's hostname mailman.put_MailHost("pop.someMailServer.com"); // Set the POP3 login/password. mailman.put_PopUsername("myLogin"); mailman.put_PopPassword("myPassword"); // Read mail headers and one line of the body. CkEmailBundle *bundle = mailman.GetAllHeaders(1); if (mailman.get_LastMethodSuccess() == false) { strOut.append(mailman.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Sort the bundle by date bool ascending = false; bundle->SortByDate(ascending); // Get the 10 most recent UIDLs CkStringArray saUidls; int n = bundle->get_MessageCount(); if (n > 10) { n = 10; } int i = 0; CkEmail *email = 0; while (i < n) { email = bundle->GetEmail(i); success = saUidls.Append(email->uidl()); delete email; i = i + 1; } delete bundle; // Download in full the 10 most recent emails: CkEmailBundle *bundle2 = mailman.FetchMultiple(saUidls); if (mailman.get_LastMethodSuccess() == false) { strOut.append(mailman.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } i = 0; while (i < bundle2->get_MessageCount()) { email = bundle2->GetEmail(i); strOut.append(email->ck_from()); strOut.append("\r\n"); strOut.append(email->subject()); strOut.append("\r\n"); strOut.append("----"); strOut.append("\r\n"); delete email; i = i + 1; } SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.