Sample code for 30+ languages & platforms
AutoIt

Save Web Page as .mht Web Archive

See more MHT / HTML Email Examples

Downloads a web page into a .mht web archive.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oMht = ObjCreate("Chilkat.Mht")

$bSuccess = $oMht.GetAndSaveMHT("http://www.bonairefishing.com/","bonairefishing.mht")
If ($bSuccess <> True) Then
    ConsoleWrite($oMht.LastErrorText & @CRLF)
    Exit
Else
    ConsoleWrite("MHT Created!" & @CRLF)
EndIf