Sample code for 30+ languages & platforms
Unicode C

Transition from Email.CreateForward to Email.ToForward

Provides instructions for replacing deprecated CreateForward method calls with ToForward.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkEmailW.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkEmailW email;
    HCkEmailW emailObj;
    HCkEmailW emailOut;

    success = FALSE;

    email = CkEmailW_Create();

    //  ...
    //  ...

    //  ------------------------------------------------------------------------
    //  The CreateForward method is deprecated:

    emailObj = CkEmailW_CreateForward(email);
    if (CkEmailW_getLastMethodSuccess(email) == FALSE) {
        wprintf(L"%s\n",CkEmailW_lastErrorText(email));
        CkEmailW_Dispose(email);
        return;
    }

    //  ...
    //  ...

    CkEmailW_Dispose(emailObj);

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

    emailOut = CkEmailW_Create();
    success = CkEmailW_ToForward(email,emailOut);
    if (success == FALSE) {
        wprintf(L"%s\n",CkEmailW_lastErrorText(email));
        CkEmailW_Dispose(email);
        CkEmailW_Dispose(emailOut);
        return;
    }



    CkEmailW_Dispose(email);
    CkEmailW_Dispose(emailOut);

    }