Sample code for 30+ languages & platforms
Unicode C

Example: MailMan.RenderToMime method

Demonstrates the RenderToMime method.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkEmailW.h>
#include <C_CkMailManW.h>

void ChilkatSample(void)
    {
    HCkEmailW email;
    HCkMailManW mailman;
    const wchar_t *renderedMime;

    //  Create a simple email
    email = CkEmailW_Create();

    CkEmailW_putSubject(email,L"This is a test");
    CkEmailW_putBody(email,L"This is a test");

    CkEmailW_putFrom(email,L"Joe <joe@example.com>");
    CkEmailW_AddTo(email,L"Mary",L"mary@example2.com");

    mailman = CkMailManW_Create();

    //  See the exact MIME of the email that would be sent
    //  if your application called SendEmail and passed in the email object.
    renderedMime = CkMailManW_renderToMime(mailman,email);

    wprintf(L"%s\n",renderedMime);

    //  For this example, the rendered MIME looks like this:

    //  MIME-Version: 1.0
    //  Date: Fri, 27 Feb 2026 06:55:44 -0600
    //  Message-ID: <E4369AE94DE6CD7D08D4F15D95937F2A7FFC95E8@CHILKAT25>
    //  Content-Type: text/plain; charset=us-ascii; format=flowed
    //  Content-Transfer-Encoding: 7bit
    //  X-Priority: 3 (Normal)
    //  Subject: This is a test
    //  From: Joe <joe@example.com>
    //  To: Mary <mary@example2.com>
    //  
    //  This is a test


    CkEmailW_Dispose(email);
    CkMailManW_Dispose(mailman);

    }