Sample code for 30+ languages & platforms
Unicode C

Check Whether an Email Has a Plain-Text Body

See more Email Object Examples

Demonstrates the Chilkat Email.HasPlainTextBody method, which returns true only when a text/plain body is present in the current email object. This example sets a plain-text body and confirms its presence.

Background: The plain-text body is the fallback representation used when HTML is unavailable or unwanted — and the form usually preferred for search, indexing, and accessibility. HasPlainTextBody is the counterpart to HasHtmlBody; testing both lets a program handle every combination (text-only, HTML-only, both, or neither) gracefully.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkEmailW.h>

void ChilkatSample(void)
    {
    HCkEmailW email;

    //  Demonstrates the HasPlainTextBody method, which returns true only when a text/plain body
    //  is present in the current email object.

    email = CkEmailW_Create();
    CkEmailW_putSubject(email,L"HasPlainTextBody example");

    CkEmailW_SetTextBody(email,L"Hello, this is the plain-text body.",L"text/plain");

    if (CkEmailW_HasPlainTextBody(email) == TRUE) {
        wprintf(L"The email has a plain-text body.\n");
    }
    else {
        wprintf(L"The email does not have a plain-text body.\n");
    }



    CkEmailW_Dispose(email);

    }