in reply to Using Sendmail.pm problem
Instead of
try putting the module in the script's execution directory# Get environment variable value $home = $ENV{"HOME"}; BEGIN { push @INC, "$home/scripts/Mail" }; use Mail::Sendmail;
use lib '.'; use Mail::Sendmail;
|
|---|