Sample code for 30+ languages & platforms
Visual FoxPro

Transition from MailMan.TransferMail to MailMan.FetchAll

Provides instructions for replacing deprecated TransferMail 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 TransferMail method is deprecated:

loBundleObj = loMailman.TransferMail()
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 = 0
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