
August 13th, 2000, 06:11 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Start here for an easy way -> http://www.perl.com/CPAN-local/modules/by-module/Mail/Mail-Sender-0.7.04.tar.gz
Copied from its SYNOPSIS section:
SYNOPSIS
use Mail::Sender;
$sender = new Mail::Sender
{smtp => 'mail.yourdomain.com', from => 'your@address.com'};
$sender->MailFile({to => 'some@address.com',
subject => 'Here is the file',
msg => "I'm sending you the list you wanted.",
file => 'filename.txt'});
Also check out -> http://www.devshed.com/Talk/Forums/Forum6/HTML/000318.html
|