Sample code for 30+ languages & platforms
Pascal (Lazarus/Delphi)

Get a Header Field of a Related Item

See more Email Object Examples

Demonstrates the Chilkat Email.GetRelatedHeader method, which returns the value of a named header field of a related item. The first argument is the zero-based related-item index and the second is the MIME header-field name. This example reads the Content-Type header of a related style sheet.

Background: Each related item is a MIME part with its own header block. Where GetRelatedAttr extracts a single named parameter from a header, GetRelatedHeader returns the entire value of a header field — for example the full Content-Type or Content-Location line — which is handy for inspecting exactly how an embedded resource is described.

Chilkat Pascal (Lazarus/Delphi) Downloads

Pascal (Lazarus/Delphi)
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.Email;

// ---------------------------------------------------------------------------

procedure RunDemo;
var
  email: TEmail;
  ct: string;

begin
  //  Demonstrates the GetRelatedHeader method, which returns the value of a header field (by
  //  name) of a related item.  The first argument is the zero-based related-item index and the
  //  second is the MIME header-field name.

  email := TEmail.Create;
  email.Subject := 'GetRelatedHeader example';

  //  Set an HTML body and add a related style sheet (index 0).
  email.SetHtmlBody('<html><head><link rel="stylesheet" href="styles.css"/></head><body>Styled.</body></html>');
  email.AddRelatedString2('styles.css','body { color: navy; }','utf-8');

  //  Get the Content-Type header of the first related item (index 0).
  ct := email.GetRelatedHeader(0,'Content-Type');
  WriteLn('Related item 0 Content-Type: ' + ct);


  email.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.