Purpose
Fills a message with all field data from a supplied server file.
Syntax
Message.FillFrom (ServerFile)
ServerFile |
The name of the server file that will be the source of data for the message. |
Example
Dim msg as EMail
Dim sf as ServerFile
' Note: The FCAS gateway must have Core Services on the Desktop as well as monitoring privileges.
sf.OpenFile ("Core Services\Server Monitor", fcRead)
msg.to = FCUserName
msg.subject = "From a server file"
msg.FormID = 7900
msg.FillFrom (sf)
msg.Send
|