in reply to Re: Re: Loading sendmail module
in thread Loading sendmail module

Try using:

use lib '/usr/local/lib/perl5/site_perl/5.005';

Or if it doesn't work, I would definitely advice the

BEGIN...
--
jey

Replies are listed 'Best First'.
Re: Re: Re: Re: Loading sendmail module
by Anonymous Monk on Jan 29, 2004 at 18:46 UTC
    Thanks I tried all this and still get same error:
    use lib '/usr/local/lib/perl5/site_perl/5.005/'; use Mail::Sendmail;
    and
    BEGIN {shift @INC, "/usr/local/lib/perl5/site_perl/5.005";} use Mail::Sendmail;
    and
    BEGIN {shift @INC, "/usr/local/lib/perl5/site_perl/5.005/Mail/Mailer"; +} use Mail::Sendmail;
    and
    BEGIN {shift @INC, "/usr/local/lib/perl5/site_perl/5.005/Mail";} use Mail::Sendmail;
    Any other suggestions?