in reply to how to send file attachment in a mail

I've been using Mail::Sender on both Windows and Unix, and it works just fine. An example from the man-page:

use Mail::Sender; $sender = new Mail::Sender{ smtp => 'smtp.server.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'});

good luck!

--
Brigitte    'I never met a chocolate I didnt like'    Jellinek
http://www.horus.com/~bjelli/         http://perlwelt.horus.at

Replies are listed 'Best First'.
Re: Re: how to send file attachment in a mail
by Anonymous Monk on Mar 19, 2002 at 23:35 UTC
    Wow Mail::Sender is incredibly easy to use, I got it working after 2 min including the:
    perl -MCPAN -e shell
    install Mail::Sender
    I recomend trying it first.