Pascal (Lazarus/Delphi)
Pascal (Lazarus/Delphi)
Get the Decoded MIME Body Text
See more MIME Examples
Demonstrates the Chilkat Mime.GetBodyDecoded method, which returns the decoded body as text. It takes no arguments. Chilkat first reverses the Content-Transfer-Encoding and then interprets the bytes according to the declared charset.
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 gives you the actual, human-readable content of a text part — the two-step decode (transfer encoding, then charset) is exactly what a mail client does to display it. Use it for text parts; for binary content such as an image, decode to bytes with
GetBodyBd instead, since forcing binary through a text decode would corrupt it.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;
bodyText: 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 body as decoded text. Chilkat first reverses the Content-Transfer-Encoding (Base64
// or quoted-printable) and then interprets the bytes according to the declared charset.
bodyText := mime.GetBodyDecoded();
if (mime.LastMethodSuccess = False) then
begin
WriteLn(mime.LastErrorText);
Exit;
end;
WriteLn(bodyText);
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.