Sample code for 30+ languages & platforms
Lianja

Transition from Email.GetDigest to Email.GetDigestEmail

Provides instructions for replacing deprecated GetDigest method calls with GetDigestEmail.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

loEmail = createobject("CkEmail")

// ...
// ...
lnIndex = 0

// ------------------------------------------------------------------------
// The GetDigest method is deprecated:

loEmailObj = loEmail.GetDigest(lnIndex)
if (loEmail.LastMethodSuccess = .F.) then
    ? loEmail.LastErrorText
    release loEmail
    return
endif

// ...
// ...

release loEmailObj

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

loEmailOut = createobject("CkEmail")
llSuccess = loEmail.GetDigestEmail(lnIndex,loEmailOut)
if (llSuccess = .F.) then
    ? loEmail.LastErrorText
    release loEmail
    release loEmailOut
    return
endif



release loEmail
release loEmailOut