Sample code for 30+ languages & platforms
DataFlex

Get an Alternative Body by Content-Type

See more Email Object Examples

Demonstrates the Chilkat Email.GetAlternativeBodyByContentType method, which returns an alternative body selected by its Content-Type — such as text/plain, text/html, or text/xml — instead of by numeric index. This example retrieves both the plain-text and HTML alternatives by content type.

Background: Selecting by Content-Type is often more convenient than by index, because you usually know which representation you want (the HTML, say) but not its position in the alternative list. This mirrors how a mail client works — it looks up the best matching type to display — and avoids assumptions about ordering, which can vary between messages.

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Handle hoEmail
    Boolean iSuccess
    String sPlain
    String sHtmlBody

    //  Demonstrates the GetAlternativeBodyByContentType method, which returns an alternative
    //  body selected by its Content-Type (such as text/plain, text/html, or text/xml) rather
    //  than by index.

    Get Create (RefClass(cComChilkatEmail)) To hoEmail
    If (Not(IsComObjectCreated(hoEmail))) Begin
        Send CreateComObject of hoEmail
    End

    //  Create an email with plain-text and HTML alternatives.
    Send ComSetTextBody To hoEmail "This is the plain-text alternative." "text/plain"
    Get ComAddHtmlAlternativeBody Of hoEmail "<html><body>This is the HTML alternative.</body></html>" To iSuccess

    //  Get the plain-text alternative by its content type.
    Get ComGetAlternativeBodyByContentType Of hoEmail "text/plain" To sPlain
    Showln "text/plain body: " sPlain

    //  Get the HTML alternative by its content type.
    Get ComGetAlternativeBodyByContentType Of hoEmail "text/html" To sHtmlBody
    Showln "text/html body: " sHtmlBody


End_Procedure