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 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 attachment

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-15 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 file' argument, but mail doesn't have this. This script needs to run on a FreeBSD box (that I don't have root on)

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 file' argument, but

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 as an

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 2001,

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

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 | | mutt -s

how to mail an attachment from a script

2001-09-14 Thread dman
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 file' argument, but mail doesn't have this. This script needs to run on a FreeBSD box (that I don't have root on) that doesn't have mutt. TIA, -D