C Style API
bbGetBody() Function
Returns the email message body of the sMessageText parameter.
Parameters
sMessageText
Null terminated character array containing the email message
that you need to retrieve the message body from.
sReturn [out]
Null terminated character array. Returns the contents of the
header block.
lLength [out]
Returns a long value. Contains the length of the value
returned in sReturn.
Syntax - (Visual Basic)
sMessage = "{RAW Email Message}"
sValue = String(Len(sMessage), " ")
Call bbGetBody(sMessage, sValue, lLength)
sBody = Left(sValue, lLength)
Remarks
For more examples, and language specific declarations, see sample source code files that
came with BoogieBounce API.
See Also
Visual Basic Users
Power Basic Users