> 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 PROTECTED]', Subject=> 'what you want to say', }); print $mailer "$body"; $mailer -> close; Hope this helps Ron
- email on win32 Morse, Loretta
- Re: email on win32 Jan Gehring
- Re: email on win32 Geraint Jones
- Re: email on win32 Patrick Tinley
- RE: email on win32 Hill, Ronald
- RE: email on win32 John Storms
- Related to: RE: email on win32 Mark Ross
- Re: email on win32 Michael Risser
- Re: email on win32 Patrick Tinley
- Re: email on win32 Sean O'Leary