Sample code for 30+ languages & platforms
Delphi DLL

Example: MailMan.RenderToMime method

Demonstrates the RenderToMime method.

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, MailMan;

...

procedure TForm1.Button1Click(Sender: TObject);
var
email: HCkEmail;
mailman: HCkMailMan;
renderedMime: PWideChar;

begin
// Create a simple email
email := CkEmail_Create();

CkEmail_putSubject(email,'This is a test');
CkEmail_putBody(email,'This is a test');

CkEmail_putFrom(email,'Joe <joe@example.com>');
CkEmail_AddTo(email,'Mary','mary@example2.com');

mailman := CkMailMan_Create();

// See the exact MIME of the email that would be sent
// if your application called SendEmail and passed in the email object.
renderedMime := CkMailMan__renderToMime(mailman,email);

Memo1.Lines.Add(renderedMime);

// For this example, the rendered MIME looks like this:

// MIME-Version: 1.0
// Date: Fri, 27 Feb 2026 06:55:44 -0600
// Message-ID: <E4369AE94DE6CD7D08D4F15D95937F2A7FFC95E8@CHILKAT25>
// Content-Type: text/plain; charset=us-ascii; format=flowed
// Content-Transfer-Encoding: 7bit
// X-Priority: 3 (Normal)
// Subject: This is a test
// From: Joe <joe@example.com>
// To: Mary <mary@example2.com>
// 
// This is a test

CkEmail_Dispose(email);
CkMailMan_Dispose(mailman);

end;