#!      /bin/csh -f
#
# Copyright 1993, 1994, 1995 by the Regents of the University of California.
# see the file "Copyright" in the distribution for conditions of use.
#
#
#       send mail using BSD mail
#
cat << "EOT"

You will be prompted for an address or addresses and then a subject.
After entering these items, enter the body of the message.  When you
have finished, enter a line containing only a period to send the message.

"EOT"
echo -n 'Enter e-mail address(es) to send mail to: '
set x = $<
set y = ( $x )
if ( $#y == 0 ) exit
mail $x
