AutoIt
AutoIt
Transition from MailMan.GetAllHeaders to MailMan.FetchAll
Provides instructions for replacing deprecated GetAllHeaders method calls with FetchAll.Chilkat AutoIt Downloads
Local $bSuccess = False
$oMailman = ObjCreate("Chilkat.MailMan")
; ...
; ...
Local $iNumBodyLines = 5
; ------------------------------------------------------------------------
; The GetAllHeaders method is deprecated:
Local $oBundleObj = $oMailman.GetAllHeaders($iNumBodyLines)
If ($oMailman.LastMethodSuccess = False) Then
ConsoleWrite($oMailman.LastErrorText & @CRLF)
Exit
EndIf
; ...
; ...
; ------------------------------------------------------------------------
; Do the equivalent using FetchAll.
; Your application creates a new, empty EmailBundle object which is passed
; in the last argument and filled upon success.
Local $bKeepOnServer = True
Local $bHeadersOnly = True
$oBundleOut = ObjCreate("Chilkat.EmailBundle")
$bSuccess = $oMailman.FetchAll($bKeepOnServer,$bHeadersOnly,$iNumBodyLines,$oBundleOut)
If ($bSuccess = False) Then
ConsoleWrite($oMailman.LastErrorText & @CRLF)
Exit
EndIf