Sample code for 30+ languages & platforms
AutoIt

Embed a Message as message/rfc822

See more MIME Examples

Demonstrates the Chilkat Mime.NewMessageRfc822 method, which clears the object and initializes it as a message/rfc822 entity whose body is a serialized copy of another Mime. The only argument is the message to embed.

Background: message/rfc822 wraps a whole email as the body of another — the mechanism behind forwarding a message "as attachment" or bundling one message inside another. The inner message is copied at the time of the call, so later edits to the source do not change the embedded copy. The result is a self-contained part a mail client will present as a nested message.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

;  Demonstrates the Mime.NewMessageRfc822 method, which clears the current object and initializes
;  it as a message/rfc822 entity whose body is a serialized copy of another Mime.  The only
;  argument is the Mime to embed.

;  Build the inner message to embed.
$oInnerMsg = ObjCreate("Chilkat.Mime")
$bSuccess = $oInnerMsg.SetHeaderField("Subject","Forwarded message")
If ($bSuccess = False) Then
    ConsoleWrite($oInnerMsg.LastErrorText & @CRLF)
    Exit
EndIf

$bSuccess = $oInnerMsg.SetBodyFromPlainText("This is the original message being forwarded.")
If ($bSuccess = False) Then
    ConsoleWrite($oInnerMsg.LastErrorText & @CRLF)
    Exit
EndIf

;  Wrap it as message/rfc822 (an embedded/forwarded email).
$oMime = ObjCreate("Chilkat.Mime")
$bSuccess = $oMime.NewMessageRfc822($oInnerMsg)
If ($bSuccess = False) Then
    ConsoleWrite($oMime.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Content-Type: " & $oMime.ContentType & @CRLF)