Sample code for 30+ languages & platforms
Unicode C++

Upload (Append) Email to an IMAP Mailbox

Upload / append an email to an IMAP mailbox.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkImapW.h>
#include <CkEmailW.h>

void ChilkatSample(void)
    {
    bool success = false;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkImapW imap;

    // Connect to an IMAP server.
    // Use TLS
    imap.put_Ssl(true);
    imap.put_Port(993);
    success = imap.Connect(L"imap.example.com");
    if (success != true) {
        wprintf(L"%s\n",imap.lastErrorText());
        return;
    }

    // Login
    success = imap.Login(L"myLogin",L"myPassword");
    if (success != true) {
        wprintf(L"%s\n",imap.lastErrorText());
        return;
    }

    CkEmailW email;

    // Load the email from a .eml file.
    success = email.LoadEml(L"myEmail.eml");
    if (success != true) {
        wprintf(L"%s\n",email.lastErrorText());
        return;
    }

    success = imap.AppendMail(L"Inbox",email);
    if (success != true) {
        wprintf(L"%s\n",imap.lastErrorText());
        return;
    }

    wprintf(L"Email uploaded to Inbox!\n");

    // Disconnect from the IMAP server.
    success = imap.Disconnect();
    }