Re: how to mail an attachment from a script

2001-09-20 Thread Peter S Galbraith
dman wrote: > I need to set up a script to be run by crontab. This script needs to > mail a (html) file as an attachment. How can I do this? I use `nail' to do this. Peter

Re: how to mail an attachment from a script

2001-09-16 Thread dman
On Sun, Sep 16, 2001 at 05:32:17AM +0200, Sven Hoexter wrote: | On Sat, Sep 15, 2001 at 10:35:41PM -0400, dman wrote: | > On Sat, Sep 15, 2001 at 05:43:29PM -0700, Alvin Oga wrote: | > | | > | to send an attachment via cron or any script | > | | > | create the attachment...say /tmp/a.html | > |

Re: how to mail an attachment from a script

2001-09-16 Thread Alvin Oga
so download and install it... c ya alvin On Sat, 15 Sep 2001, dman wrote: > On Sat, Sep 15, 2001 at 05:43:29PM -0700, Alvin Oga wrote: > | > | hi sean > | > | to send an attachment via cron or any script > | > | create the attachment...say /tmp/a.html > | > | echo "this is a text msg and a

Re: how to mail an attachment from a script

2001-09-15 Thread Sven Hoexter
On Sat, Sep 15, 2001 at 10:35:41PM -0400, dman wrote: > On Sat, Sep 15, 2001 at 05:43:29PM -0700, Alvin Oga wrote: > | > | hi sean > | > | to send an attachment via cron or any script > | > | create the attachment...say /tmp/a.html > | > | echo "this is a text msg and attachment " | > | m

Re: how to mail an attachment from a script

2001-09-15 Thread dman
On Sat, Sep 15, 2001 at 05:43:29PM -0700, Alvin Oga wrote: | | hi sean | | to send an attachment via cron or any script | | create the attachment...say /tmp/a.html | | echo "this is a text msg and attachment " | |mutt -s "Testing attachment=a.html" -a /tmp/a.html | | a.html can be fo

Re: how to mail an attachment from a script

2001-09-15 Thread Alvin Oga
hi sean to send an attachment via cron or any script create the attachment...say /tmp/a.html echo "this is a text msg and attachment " | mutt -s "Testing attachment=a.html" -a /tmp/a.html a.html can be foo.jpg too and i think it did the "right thing"... c ya alvin On Sat, 15 Sep 2

Re: how to mail an attachment from a script

2001-09-15 Thread dman
On Sat, Sep 15, 2001 at 08:25:33AM -0300, Christoph Simon wrote: | On Fri, 14 Sep 2001 21:24:04 -0700 (PDT) | "Sean 'Shaleh' Perry" <[EMAIL PROTECTED]> wrote: | > On 15-Sep-2001 dman wrote: | > > | > > I need to set up a script to be run by crontab. This script needs to | > > mail a (html) file a

Re: how to mail an attachment from a script

2001-09-15 Thread Christoph Simon
On Fri, 14 Sep 2001 21:24:04 -0700 (PDT) "Sean 'Shaleh' Perry" <[EMAIL PROTECTED]> wrote: > > On 15-Sep-2001 dman wrote: > > > > I need to set up a script to be run by crontab. This script needs to > > mail a (html) file as an attachment. How can I do this? I know mutt > > has a '-a ' argumen

RE: how to mail an attachment from a script

2001-09-14 Thread Sean 'Shaleh' Perry
On 15-Sep-2001 dman wrote: > > I need to set up a script to be run by crontab. This script needs to > mail a (html) file as an attachment. How can I do this? I know mutt > has a '-a ' argument, but mail doesn't have this. This script > needs to run on a FreeBSD box (that I don't have root on)