Re: email on win32

2001-06-08 Thread Sean O'Leary
At 12:38 PM 6/7/2001, you wrote: >Hi, >if I do a search for Mail::Mailer I get back that its available from >http://www.ActiveState.com/packages: >when I do install Mail::Mailer I get the my previous error. > >Strange though, I do 'search Mail' as you suggest - but I do not get the >list you menti

Re: email on win32

2001-06-07 Thread Patrick Tinley
- Due to the current economic situation, the light at the end of the tunnel >will be turned off until further notice. > > >> -Original Message- >> From: Patrick Tinley [mailto:[EMAIL PROTECTED]] >> Sent: Thursday, June 07, 2001 8:48 AM >> To: [EMAIL PROTECTE

RE: Related to: RE: email on win32

2001-06-07 Thread Hill, Ronald
> -Original Message- > From: Mark Ross [mailto:[EMAIL PROTECTED]] > Subject: Related to: RE: email on win32 > > How would one modify this to add an attachment to the email. > Say, a gif or > jpg? > you need the mimetools module for this. use Mail::Internet;

Related to: RE: email on win32

2001-06-07 Thread Mark Ross
ot;) { > print MAIL $mail{'body'}; > } > print MAIL "\cu\n"; > close(MAIL); > } #endif unix > > > return(1); > } > > --- > [EMAIL PROTECTED] (Galactic Hero) > Diplomacy: The art of saying good doggie > while searching for a big rock. > > > -Original Message- > > From: Hill, Ronald [mailto:[EMAIL PROTECTED]] > > Sent: Thursday, June 07, 2001 10:23 AM > > To: 'Morse, Loretta'; '[EMAIL PROTECTED]' > > Subject: RE: email on win32 > > > > > > > > > Does anybody know how to send email via a perl script on a > > > win32 system? > > > > > > Thanks. > > >

Re: email on win32

2001-06-07 Thread Michael Risser
. -Original Message- From: Michael Risser Sent: Thursday, June 07, 2001 8:48 AM To: 'Patrick Tinley' Subject: RE: email on win32 I had been thinking about installing Mail::Mailer on my system, and ater reading your post I went ahead and tried it. If you do 'search Mail'

Re: email on win32

2001-06-07 Thread Patrick Tinley
I have tried to install this package a few times using ppm but get an error: Error installing package 'Mail::Mailer': Could not locate PPD file for package Mail::Mailer Does anyone have any idea what I'm doing wrong? Patrick At 04:18 PM 6/7/01 +0100, you wrote: >On Thursday 07 June 2001 4:03

RE: email on win32

2001-06-07 Thread John Storms
;) { print MAIL $mail{'body'}; } print MAIL "\cu\n"; close(MAIL); } #endif unix return(1); } --- [EMAIL PROTECTED] (Galactic Hero) Diplomacy: The art of saying good doggie while searching fo

RE: email on win32

2001-06-07 Thread Hill, Ronald
> Does anybody know how to send email via a perl script on a > win32 system? > > Thanks. > I use the Mail::Mailer module from CPAN use Mail::Mailer; $mailer = Mail::Mailer->new("smtp","your.smtp.mail.host"); $mailer->open({ From => '[EMAIL PROTECTED]', To => '[EMAIL PRO

Re: email on win32

2001-06-07 Thread Geraint Jones
On Thursday 07 June 2001 4:03 pm, you wrote: > Does anybody know how to send email via a perl script on a win32 system? > > Thanks. You need the Mail::Mailer module from the CPAN (see www.perl.com) Try this, it should work. I haven't used it in a couple of months and I've just switched to Linu

Re: email on win32

2001-06-07 Thread Jan Gehring
try with blat.exe from www.blat.net > > Does anybody know how to send email via a perl script on a win32 system? > > Thanks.

email on win32

2001-06-07 Thread Morse, Loretta
Does anybody know how to send email via a perl script on a win32 system? Thanks.