Yes, this is very cool!

One caution: I found several places where lines could be compressed
using redirects instead of pipes for the mail body:

        {
                cool stuff
        } | mail -s "$subject" $mailto

Beware -- this no longer works !!!

Now, you need do something like this:

        {
                cool stuff
        } > $prefix.msg
        mail -s "$subject" $mailto < $prefix.msg

Again, this is not a complaint; but, a caution . . .

-- 

Best Regards,

mds
mds resource
888.250.3987

Dare to fix things before they break . . .

Our capacity for understanding is inversely proportional to how much we
think we know.  The more I know, the more I know I don't know . . .

_______________________________________________
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user

Reply via email to