Sample code for 30+ languages & platforms
Delphi ActiveX

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 Delphi ActiveX Downloads

Delphi ActiveX
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
mailman: TChilkatMailMan;
stUidls: TChilkatStringTable;
startIdx: Integer;
n: Integer;
count: Integer;
stUidls2: TChilkatStringTable;
endIdx: Integer;
i: Integer;
bundle: TChilkatEmailBundle;
headersOnly: Integer;
numBodyLines: Integer;
email: TChilkatEmail;

begin
success := 0;

// 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.
mailman := TChilkatMailMan.Create(Self);

// 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
stUidls := TChilkatStringTable.Create(Self);
success := mailman.FetchUidls(stUidls.ControlInterface);
if (success = 0) then
  begin
    Memo1.Lines.Add(mailman.LastErrorText);
    Exit;
  end;

// Get the 10 most recent UIDLs
// The 1st email is the oldest, the last email is the newest (usually)
startIdx := 0;
n := stUidls.Count;
if (n = 0) then
  begin
    Memo1.Lines.Add('No email in the inbox.');
    Exit;
  end;

count := 10;
if (n > 10) then
  begin
    startIdx := n - 10;
  end
else
  begin
    startIdx := 0;
  end;

stUidls2 := TChilkatStringTable.Create(Self);

endIdx := n - 1;

for i := startIdx to endIdx do
  begin
    stUidls2.Append(stUidls.StringAt(i));
  end;

// Download in full the 10 most recent emails:
bundle := TChilkatEmailBundle.Create(Self);
headersOnly := 0;
// numBodyLines is ignored when fetching full emails.
numBodyLines := 0;
success := mailman.FetchUidlSet(stUidls2.ControlInterface,headersOnly,numBodyLines,bundle.ControlInterface);
if (success = 0) then
  begin
    Memo1.Lines.Add(mailman.LastErrorText);
    Exit;
  end;

email := TChilkatEmail.Create(Self);
i := 0;
while i < bundle.MessageCount do
  begin
    bundle.EmailAt(i,email.ControlInterface);
    Memo1.Lines.Add(email.From);
    Memo1.Lines.Add(email.Subject);
    Memo1.Lines.Add('----');

    i := i + 1;
  end;
end;