On 1999-11-15 17:06:45 -0700, Rayne Wolery wrote:
> So
> what I'm looking for is a way to send a message with a blank body and a
> text file attachment to 1 or more users in one command line entry
> without it prompting for me to verify who it is sent to, what the
> subject is, and finally having to enter "y" to send the message.
$ mutt -s "silly subject" -a attach1 -a attach2 -a attach3 \
recip1 recip2 recip3 < body.txt
Obviously, body.txt is just a placehlder - you may use /dev/null
instead, or you could do something like this:
$ echo | mutt -s "..." -a .. recip1 ...
--
http://www.guug.de/~roessler/