Delphi ActiveX
Delphi ActiveX
Read Gmail POP3 Mailbox
Reads the header for each email in a GMail POP3 mailbox and displays the FROM and SUBJECT header fields. In your GMail "Forwarding and POP" settings, be sure to select "When messages are accessed with POP keep Gmail's copy in the Inbox".Chilkat Delphi ActiveX Downloads
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;
bundle: TChilkatEmailBundle;
keepOnServer: Integer;
headersOnly: Integer;
numBodyLines: Integer;
i: Integer;
email: TChilkatEmail;
begin
success := 0;
// This example requires 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 GMail account POP3 properties.
mailman.MailHost := 'pop.gmail.com';
mailman.PopUsername := 'myLogin';
mailman.PopPassword := 'myPassword';
mailman.PopSsl := 1;
mailman.MailPort := 995;
// Read mail headers and one line of the body.
// To get the full emails, set headersOnly = 0
bundle := TChilkatEmailBundle.Create(Self);
keepOnServer := 1;
headersOnly := 1;
numBodyLines := 1;
success := mailman.FetchAll(keepOnServer,headersOnly,numBodyLines,bundle.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(mailman.LastErrorText);
Exit;
end;
i := 0;
email := TChilkatEmail.Create(Self);
while i < bundle.MessageCount do
begin
bundle.EmailAt(i,email.ControlInterface);
// Display the From email address and the subject.
Memo1.Lines.Add('From: ' + email.From);
Memo1.Lines.Add('Subject: ' + email.Subject);
i := i + 1;
end;
end;