Sample code for 30+ languages & platforms
DataFlex

Get the Transfer-Encoded MIME Body

See more MIME Examples

Demonstrates the Chilkat Mime.GetBodyEncoded method, which returns the current part's transfer-encoded body text without decoding Base64 or quoted-printable. It takes no arguments.

Note: The file paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.

Background: This returns the body as it appears on the wire — still Base64 or quoted-printable — which is useful for inspection, logging, or forwarding the encoded content verbatim. It is Chilkat's normalized serialization of the body, so it may differ in whitespace or line wrapping from the exact original bytes. For the readable content, use GetBodyDecoded.

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoMime
    String sEncodedBody
    String sTemp1
    Boolean bTemp1

    Move False To iSuccess

    Get Create (RefClass(cComChilkatMime)) To hoMime
    If (Not(IsComObjectCreated(hoMime))) Begin
        Send CreateComObject of hoMime
    End
    Get ComLoadMimeFile Of hoMime "qa_data/message.eml" To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoMime To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    //  Return the current part's transfer-encoded body text WITHOUT decoding Base64 or
    //  quoted-printable.  This is the body as it appears on the wire.
    Get ComGetBodyEncoded Of hoMime To sEncodedBody
    Get ComLastMethodSuccess Of hoMime To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoMime To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Showln sEncodedBody


End_Procedure