AutoIt
AutoIt
Transition from MailMan.CopyMail to MailMan.FetchAll
Provides instructions for replacing deprecated CopyMail method calls with FetchAll.Chilkat AutoIt Downloads
Local $bSuccess = False
$oMailman = ObjCreate("Chilkat.MailMan")
; ...
; ...
; ------------------------------------------------------------------------
; The CopyMail method is deprecated:
Local $oBundleObj = $oMailman.CopyMail()
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 = False
; Irrelevent because we are not downloading headers-only.
Local $iNumBodyLines = 0
$oBundleOut = ObjCreate("Chilkat.EmailBundle")
$bSuccess = $oMailman.FetchAll($bKeepOnServer,$bHeadersOnly,$iNumBodyLines,$oBundleOut)
If ($bSuccess = False) Then
ConsoleWrite($oMailman.LastErrorText & @CRLF)
Exit
EndIf