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
(VB.NET UWP/WinRT) POP3: Download Most Recent Email (method 2)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 complete list of UIDLs and then downloads the last N into a bundle object. It assumes that the UIDLs will be returned by the POP3 server ordered by date such that the 1st email in the UIDL list is the oldest, and the last email is the newest.
' 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. Dim mailman As New Chilkat.MailMan Dim success As Boolean ' Set the POP3 server's hostname mailman.MailHost = "pop.someMailServer.com" ' Set the POP3 login/password. mailman.PopUsername = "admin@chilkatsoft.com" mailman.PopPassword = "****" ' Get the complete list of UIDLs Dim saUidls As Chilkat.StringArray = Await mailman.GetUidlsAsync() If (mailman.LastMethodSuccess = False) Then Debug.WriteLine(mailman.LastErrorText) Exit Sub End If ' Get the 10 most recent UIDLs ' The 1st email is the oldest, the last email is the newest ' (usually) Dim n As Integer Dim startIdx As Integer n = saUidls.Count If (n > 10) Then startIdx = n - 10 Else startIdx = 0 End If Dim i As Integer = 0 Dim saUidls2 As New Chilkat.StringArray If (n > 0) Then For i = startIdx To n - 1 success = saUidls2.Append(saUidls.GetString(i)) Next End If ' Download in full the 10 most recent emails: Dim bundle As Chilkat.EmailBundle = Await mailman.FetchMultipleAsync(saUidls2) If (mailman.LastMethodSuccess = False) Then Debug.WriteLine(mailman.LastErrorText) Exit Sub End If Dim email As Chilkat.Email i = 0 While i < bundle.MessageCount email = bundle.GetEmail(i) Debug.WriteLine(email.From) Debug.WriteLine(email.Subject) Debug.WriteLine("----") i = i + 1 End While |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.