# template: example1 # This is a simple Memo template # The action is to mail this out to whoever is specified in the "TO" field. ACTION=mail # This defines the input form -- the HTML form # that will be presented to the remote use to fill in. # Note that the definition is terminated by single dot (.) # alone on a line. INPUT_FORM=
FROM:
SUBJECT:
Priority: Normal High
.
# This defines the way in which the fields from the
# input form are arranged in the e-mail message that
# is produced when the input form is submitted.
OUTPUT_FORM=
* MEMO *
Subject: @SUBJECT@
To: @TO@
From: @FROM@
Date: @DATE@
Priority: @PRIORITY@
@BODY@
.
# These define some default values to
# use when the fields aren't filled in.
SUBJECT=(no subject)
PRIORITY=Normal
TO=webmaster
FROM=nobody (World Wide Web Server)