Sample code for 30+ languages & platforms
Visual FoxPro

Transition from MailMan.CopyMail to MailMan.FetchAll

Provides instructions for replacing deprecated CopyMail method calls with FetchAll.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loMailman
LOCAL loBundleObj
LOCAL lnKeepOnServer
LOCAL lnHeadersOnly
LOCAL lnNumBodyLines
LOCAL loBundleOut

lnSuccess = 0

loMailman = CreateObject('Chilkat.MailMan')

* ...
* ...

* ------------------------------------------------------------------------
* The CopyMail method is deprecated:

loBundleObj = loMailman.CopyMail()
IF (loMailman.LastMethodSuccess = 0) THEN
    ? loMailman.LastErrorText
    RELEASE loMailman
    CANCEL
ENDIF

* ...
* ...

RELEASE loBundleObj

* ------------------------------------------------------------------------
* Do the equivalent using FetchAll.
* Your application creates a new, empty EmailBundle object which is passed 
* in the last argument and filled upon success.

lnKeepOnServer = 1
lnHeadersOnly = 0
* Irrelevent because we are not downloading headers-only.
lnNumBodyLines = 0

loBundleOut = CreateObject('Chilkat.EmailBundle')
lnSuccess = loMailman.FetchAll(lnKeepOnServer,lnHeadersOnly,lnNumBodyLines,loBundleOut)
IF (lnSuccess = 0) THEN
    ? loMailman.LastErrorText
    RELEASE loMailman
    RELEASE loBundleOut
    CANCEL
ENDIF

RELEASE loMailman
RELEASE loBundleOut