Pascal (Lazarus/Delphi)
Pascal (Lazarus/Delphi)
Get the Transfer-Encoded MIME Body
See more MIME Examples
Demonstrates the Chilkat Mime.GetBodyEncoded method, which returns the current part's transfer-encoded body text without decoding Base64 or quoted-printable. It takes no arguments.
Note: The file paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background: This returns the body as it appears on the wire — still Base64 or quoted-printable — which is useful for inspection, logging, or forwarding the encoded content verbatim. It is Chilkat's normalized serialization of the body, so it may differ in whitespace or line wrapping from the exact original bytes. For the readable content, use
GetBodyDecoded.Chilkat Pascal (Lazarus/Delphi) Downloads
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.Mime;
// ---------------------------------------------------------------------------
procedure RunDemo;
var
success: Boolean;
mime: TMime;
encodedBody: string;
begin
success := False;
mime := TMime.Create;
success := mime.LoadMimeFile('qa_data/message.eml');
if (success = False) then
begin
WriteLn(mime.LastErrorText);
Exit;
end;
// Return the current part's transfer-encoded body text WITHOUT decoding Base64 or
// quoted-printable. This is the body as it appears on the wire.
encodedBody := mime.GetBodyEncoded();
if (mime.LastMethodSuccess = False) then
begin
WriteLn(mime.LastErrorText);
Exit;
end;
WriteLn(encodedBody);
mime.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.