(DataFlex) Add Content-Length Header to a MIME Message
The AddContentLength method automatically computes the length of the MIME content and adds a Content-Length header with the correct number of bytes.
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoMime
String sTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatMime)) To hoMime
If (Not(IsComObjectCreated(hoMime))) Begin
Send CreateComObject of hoMime
End
// Set the MIME body:
Send ComSetBody To hoMime "This is a test"
// The complete size (in bytes) of the contents is computed,
// even if the MIME is multipart, and the Content-Length header
// is added.
Send ComAddContentLength To hoMime
// Display the MIME:
Get ComGetMime Of hoMime To sTemp1
Showln sTemp1
End_Procedure
|