Unicode C++
Unicode C++
Transition from MailMan.GetHeaders to MailMan.FetchRange
Provides instructions for replacing deprecated GetHeaders method calls with FetchRange.Chilkat Unicode C++ Downloads
#include <CkMailManW.h>
#include <CkEmailBundleW.h>
void ChilkatSample(void)
{
bool success = false;
CkMailManW mailman;
// ...
// ...
int numBodyLines = 3;
int fromIndex = 0;
int toIndex = 9;
// ------------------------------------------------------------------------
// The GetHeaders method is deprecated:
CkEmailBundleW *bundleObj = mailman.GetHeaders(numBodyLines,fromIndex,toIndex);
if (mailman.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",mailman.lastErrorText());
return;
}
// ...
// ...
delete bundleObj;
// ------------------------------------------------------------------------
// Do the equivalent using FetchRange.
// Your application creates a new, empty EmailBundle object which is passed
// in the last argument and filled upon success.
bool keepOnServer = true;
bool headersOnly = true;
CkEmailBundleW bundleOut;
success = mailman.FetchRange(keepOnServer,headersOnly,numBodyLines,fromIndex,toIndex,bundleOut);
if (success == false) {
wprintf(L"%s\n",mailman.lastErrorText());
return;
}
}