Sample code for 30+ languages & platforms
Delphi ActiveX Requires Chilkat v11.0.0+

Transition from MailMan.LoadEml to Email.LoadEml

Provides instructions for replacing deprecated MailMan.LoadEml method calls with Email.LoadEml.

Chilkat Delphi ActiveX Downloads

Delphi ActiveX
var
success: Integer;
mailman: TChilkatMailMan;
filePath: WideString;
emailObj: IChilkatEmail;
email: TChilkatEmail;

begin
success := 0;

mailman := TChilkatMailMan.Create(Self);

//  ...
//  ...

filePath := 'c:/dir/example.eml';

//  ------------------------------------------------------------------------
//  The MailMan.LoadEml method is deprecated:

emailObj := mailman.LoadEml(filePath);
if (mailman.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(mailman.LastErrorText);
    Exit;
  end;

//  ...
//  ...

//  ------------------------------------------------------------------------
//  Do the equivalent using Email.LoadEml.

email := TChilkatEmail.Create(Self);
success := email.LoadEml(filePath);
if (success = 0) then
  begin
    Memo1.Lines.Add(email.LastErrorText);
    Exit;
  end;