Sample code for 30+ languages & platforms
Pascal (Lazarus/Delphi)

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 Pascal (Lazarus/Delphi) Downloads

Pascal (Lazarus/Delphi)
program ChilkatDemo;

// Demonstrates using the Chilkat Pascal wrapper via the C bridge DLL.
// Builds as a console application under Lazarus (FPC) or Delphi.

{$IFDEF FPC}
  {$MODE DELPHI}
{$ENDIF}
{$APPTYPE CONSOLE}

uses
  {$IFDEF UNIX}
  cthreads,
  {$ENDIF}
  SysUtils,
  CkDllLoader,
  Chilkat.StringTable,
  Chilkat.EmailBundle,
  Chilkat.Email,
  Chilkat.MailMan;

// ---------------------------------------------------------------------------

procedure RunDemo;
var
  success: Boolean;
  mailman: TMailMan;
  stUidls: TStringTable;
  startIdx: Integer;
  n: Integer;
  count: Integer;
  stUidls2: TStringTable;
  endIdx: Integer;
  i: Integer;
  bundle: TEmailBundle;
  headersOnly: Boolean;
  numBodyLines: Integer;
  email: TEmail;

begin
  success := 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.
  mailman := TMailMan.Create;

  //  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 := TStringTable.Create;
  success := mailman.FetchUidls(stUidls);
  if (success = False) then
    begin
      WriteLn(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
      WriteLn('No email in the inbox.');
      Exit;
    end;

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

  stUidls2 := TStringTable.Create;

  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 := TEmailBundle.Create;
  headersOnly := False;
  //  numBodyLines is ignored when fetching full emails.
  numBodyLines := 0;
  success := mailman.FetchUidlSet(stUidls2,headersOnly,numBodyLines,bundle);
  if (success = False) then
    begin
      WriteLn(mailman.LastErrorText);
      Exit;
    end;

  email := TEmail.Create;
  i := 0;
  while i < bundle.MessageCount do
    begin
      bundle.EmailAt(i,email);
      WriteLn(email.From);
      WriteLn(email.Subject);
      WriteLn('----');

      i := i + 1;
    end;



  mailman.Free;
  stUidls.Free;
  stUidls2.Free;
  bundle.Free;
  email.Free;

end;

// ---------------------------------------------------------------------------

begin

  try
    RunDemo;
  except
    on E: Exception do
      WriteLn('Unhandled exception: ', E.ClassName, ': ', E.Message);
  end;

  WriteLn;
  {$IFDEF MSWINDOWS}
  WriteLn('Press Enter to exit...');
  ReadLn;
  {$ENDIF}
end.