Sample code for 30+ languages & platforms
Delphi DLL

Transition from Email.CreateForward to Email.ToForward

Provides instructions for replacing deprecated CreateForward method calls with ToForward.

Chilkat Delphi DLL Downloads

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

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
email: HCkEmail;
emailObj: HCkEmail;
emailOut: HCkEmail;

begin
success := False;

email := CkEmail_Create();

// ...
// ...

// ------------------------------------------------------------------------
// The CreateForward method is deprecated:

emailObj := CkEmail_CreateForward(email);
if (CkEmail_getLastMethodSuccess(email) = False) then
  begin
    Memo1.Lines.Add(CkEmail__lastErrorText(email));
    Exit;
  end;

// ...
// ...

CkEmail_Dispose(emailObj);

// ------------------------------------------------------------------------
// Do the equivalent using ToForward.
// Your application creates a new, empty Email object which is passed 
// in the last argument and filled upon success.

emailOut := CkEmail_Create();
success := CkEmail_ToForward(email,emailOut);
if (success = False) then
  begin
    Memo1.Lines.Add(CkEmail__lastErrorText(email));
    Exit;
  end;

CkEmail_Dispose(email);
CkEmail_Dispose(emailOut);

end;