Chris Zimmerman wrote:
> How can I send a message with an attachment from the command line? I
> see that mutt has a -a option that will allow for the attachment, but I
> need this to work without user interaction (as this will go into a cron
> job).
mutt -a /path/filename -s "subject" user@host
Chris Zimmerman <[EMAIL PROTECTED]> wrote:
>
> How can I send a message with an attachment from the command line?
echo "Here is the enclosing text" | \
mutt -s "Here is your subject" -a attach_filename [EMAIL PROTECTED]
--
David DeSimone | "The doctrine of human equality reposes
How can I send a message with an attachment from the command line? I
see that mutt has a -a option that will allow for the attachment, but I
need this to work without user interaction (as this will go into a cron
job).
Thanks,
Chris Zimmerman