Re: How to email my results to a group of people....

2004-06-29 Thread Ramprasad A Padmanabhan
If you do want to use perl, you can use dozens of perl modules. Learn MIME::Parser that will help you in lot of projects. But to be frank , just for sending attachments you dont need to write a perl script ( Though it is fairly simple ) . Just use mutt mutt -a attachment.file -f fromid -s "SUBJE

Re: How to email my results to a group of people....

2004-06-28 Thread LRMK
> Gunnar Hjalmarsson wrote: > > Jason Corbett wrote: > > > >> I hear PEAL has emailing (in attachment format) capabilities? I > >> down-loaded the module MIME::Lite, but I am not sure how to get > >> this going. > > > > > > How about studying the docs for the module? > > > > Also, such a script w

Re: How to email my results to a group of people....

2004-06-28 Thread Gunnar Hjalmarsson
Mike Blezien wrote: Gunnar Hjalmarsson wrote: Jason Corbett wrote: I hear PEAL has emailing (in attachment format) capabilities? I down-loaded the module MIME::Lite, but I am not sure how to get this going. How about studying the docs for the module? Also, such a script was recently posted to this

Re: How to email my results to a group of people....

2004-06-28 Thread Mike Blezien
Gunnar Hjalmarsson wrote: Jason Corbett wrote: I hear PEAL has emailing (in attachment format) capabilities? I down-loaded the module MIME::Lite, but I am not sure how to get this going. How about studying the docs for the module? Also, such a script was recently posted to this list: http://www.ma

Re: How to email my results to a group of people....

2004-06-28 Thread Gunnar Hjalmarsson
Jason Corbett wrote: I hear PEAL has emailing (in attachment format) capabilities? I down-loaded the module MIME::Lite, but I am not sure how to get this going. How about studying the docs for the module? Also, such a script was recently posted to this list: http://www.mail-archive.com/beginners%40

How to email my results to a group of people....

2004-06-28 Thread jason corbett
I have a script that is automated every morning. I want to send this out to the team without logging onto the network and emailing the file from a shell script that i also wrote like this: `mailx -s "Email Header" [EMAIL PROTECTED] < filename.txt`; so, I hear PEAL has emailing (in attachme