Sample code for 30+ languages & platforms
PowerBuilder

Example: MailMan.RenderToMime method

Demonstrates the RenderToMime method.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
oleobject loo_Email
oleobject loo_Mailman
string ls_RenderedMime

// Create a simple email
loo_Email = create oleobject
li_rc = loo_Email.ConnectToNewObject("Chilkat.Email")
if li_rc < 0 then
    destroy loo_Email
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Email.Subject = "This is a test"
loo_Email.Body = "This is a test"

loo_Email.From = "Joe <joe@example.com>"
loo_Email.AddTo("Mary","mary@example2.com")

loo_Mailman = create oleobject
li_rc = loo_Mailman.ConnectToNewObject("Chilkat.MailMan")

// See the exact MIME of the email that would be sent
// if your application called SendEmail and passed in the email object.
ls_RenderedMime = loo_Mailman.RenderToMime(loo_Email)

Write-Debug ls_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


destroy loo_Email
destroy loo_Mailman