Hiya,
I'm trying to get Mail::Sender (ok, ok I'm finally moving away from Blat!).
I've been using the modules that come with Active State's basic Perl
install. Mail::Sender is not included from what I can tell. I went to CPAN
but it looks like they only do FTP transfers and not HTTP transfers. Since
my work does not allow FTP beyond the firewall, is there another solution
for downloading?
Thanks,
Joel
-----Original Message-----
From: Evgeny Goldin (aka Genie) [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 11, 2001 7:33 AM
To: [EMAIL PROTECTED]
Subject: Re: Email on Windows Platform
>>> I'm wondering how you go about taking info from a html form and
>>> have it emailed to a recipient when the server hosting the web page
>>> is a Windows machine. I know that on a *nix machine you can invoke
>>> the sendmail program, but how do you do it on say Win2K server?
I've found Mail::Sender to be extremely simple and useful :
use Mail::Sender;
$sender = new Mail::Sender{smtp => 'mail.yourdomain.com', from =>
'[EMAIL PROTECTED]'};
$sender->MailFile({to => '[EMAIL PROTECTED]',
subject => 'Here is the file',
msg => "I'm sending you the list you wanted.",
file => 'filename.txt'});