' **************************************************************************** ' Description: Tutorial 9, Creating Messages. This example creates two ' private messages. Once run, check the Outpost Out Tray to ' confirm the messages are ready to go. Note the different ' ways to creating the message content... direct or from a file. ' Author: Jim KN6PE ' Revision: 09/18/08: Original ' **************************************************************************** SCRIPT BEGIN ' This script sets up all parameters to create a message. Note that the ' message body (MESSAGE=) is directly entered. BBS="K6FB-2" FROM="KN6PE" TO="KE6AFE" SUBJECT="Status of the system" MTYPE="Private" MESSAGE="Hi Cap, this is an auto-generated message. 73, Jim" CREATEMESSAGE ' This second message uses the BBS, From, and To settings above. Note that the ' message body is read in from a file. All the other commands -- BBS. FROM, ' TO -- are the same from the previous run. These parameters are set until ' they are changed by you. SUBJECT="Weather Bulletin" MTYPE="Private" MESSAGE=READFILE("WX-report.txt") CREATEMESSAGE END