Purpose
Allows the AltBody of a file on the FirstClass server to be assigned directly or retrieved.
AltBody text is only used in certain circumstances and is generally in HTML format for rendering by a true HTML engine.
When you assign the AltBody, any existing AltBody is overwritten.
Syntax
ServerFile.AltBody [= "<HTML>String</HTML>"]
Example
Dim sf as ServerFile
sf.OpenFile("Testfile",fcReadWrite)
sf.AltBody="<HTML>This is the AltBody text.</HTML>"
Debug sf.AltBody
sf.CloseFile
|