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.
Chilkat VB.NET Downloads
Dim success As Boolean = False
' 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
' Set the POP3 server's hostname
mailman.MailHost = "pop.example.com"
' Set the POP3 login/password.
mailman.PopUsername = "bob@example.com"
mailman.PopPassword = "****"
' Get the complete list of UIDLs
Dim stUidls As New Chilkat.StringTable
success = mailman.FetchUidls(stUidls)
If (success = 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 startIdx As Integer = 0
Dim n As Integer = stUidls.Count
If (n = 0) Then
Debug.WriteLine("No email in the inbox.")
Exit Sub
End If
Dim count As Integer = 10
If (n > 10) Then
startIdx = n - 10
Else
startIdx = 0
End If
Dim stUidls2 As New Chilkat.StringTable
Dim endIdx As Integer = n - 1
Dim i As Integer
For i = startIdx To endIdx
stUidls2.Append(stUidls.StringAt(i))
Next
' Download in full the 10 most recent emails:
Dim bundle As New Chilkat.EmailBundle
Dim headersOnly As Boolean = False
' numBodyLines is ignored when fetching full emails.
Dim numBodyLines As Integer = 0
success = mailman.FetchUidlSet(stUidls2,headersOnly,numBodyLines,bundle)
If (success = False) Then
Debug.WriteLine(mailman.LastErrorText)
Exit Sub
End If
Dim email As New Chilkat.Email
i = 0
While i < bundle.MessageCount
bundle.EmailAt(i,email)
Debug.WriteLine(email.From)
Debug.WriteLine(email.Subject)
Debug.WriteLine("----")
i = i + 1
End While