
August 18th, 2000, 06:34 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
You might not need to install it. If you extracted Mail-Sender-0.7.04.tar.gz, you should see a file called "Sender.pm", that is the one you needed. You can simply upload this file to your server but be sure to create a Mail directory and place Sender.pm in it.
i.e. /data/vhost/actionpoint.com/lib/Mail/Sender.pm
In your script, add a "use lib" line like so:
use lib '/data/vhost/actionpoint.com/lib';
use Mail::Sender;
You should check -> http://www.devshed.com/Talk/Forums/Forum6/HTML/000340.html and see if your server already have Mail::Sender installed or not.
Anyway, you can try to use it by specifying the use Mail::Sender; line without the "use lib" line and see if it produces any error "@INC...".
|