Sample code for 30+ languages & platforms
Xbase++

Serialize MIME to a String

See more MIME Examples

Demonstrates the Chilkat Mime.GetMime method, which serializes and returns the complete MIME entity — headers, body, multipart boundaries, and all descendants — as a string. It takes no arguments.

Background: This produces the finished MIME text ready to send, store, or hand to another component — the inverse of loading. The whole tree is emitted, including generated multipart boundaries. Because it returns a string, it is best for text-safe content; when the body may contain raw binary bytes, serialize with GetMimeBd to a BinData instead so nothing is altered.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oMime
LOCAL cMimeText

nSuccess := 0

//  Demonstrates the Mime.GetMime method, which serializes and returns the complete MIME entity
//  (headers, body, multipart boundaries, and all descendants) as a string.  It takes no
//  arguments.

oMime := CreateObject("Chilkat.Mime")

//  Build a simple MIME entity.
nSuccess := oMime:SetBodyFromPlainText("Hello, this is the message body.")
IF (nSuccess == 0)
    ? oMime:LastErrorText
    oMime:destroy()
    RETURN
ENDIF

//  Serialize it to a string.
cMimeText := oMime:GetMime()
IF (oMime:LastMethodSuccess == 0)
    ? oMime:LastErrorText
    oMime:destroy()
    RETURN
ENDIF

? cMimeText

oMime:destroy()