in reply to Re^2: Trouble emailing zip file
in thread Trouble emailing zip file

perldoc -l The::Module

tells you

No documentation found for "The::Module"

... and

perl -MThe::Module=99999999 -e1

tells you

Can't locate The/Module.pm in @INC (@INC contains: ...)

... for misssing modules.

If the module actually is installed, both will output nothing.

Replies are listed 'Best First'.
Re^4: Trouble emailing zip file
by TonyNY (Beadle) on Jul 03, 2018 at 16:05 UTC

    Thanks!