greetings everybody,
How do I know which other modules are required by the perl module (like
Net::SMTPS) I am using?
Thanks
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
Netwinds:
> How do I know which other modules are required by the perl module
> (like Net::SMTPS) I am using?
You mean like go to cpan:
https://metacpan.org/pod/Net::SMTPS
and looking at the left column under dependencies ?
Regards,
/Karl Hammar
--
To unsubscribe, e-mail: beginners-unsubscr.
At the command prompt, run:
perl -le 'use Net::SMTPS; print for keys %INC;'
That will tell you the names of all of the modules that get loaded when you
load Net::SMTP.
Cheers,
Rob
On Thu, May 16, 2024 at 11:07 PM Netwinds wrote:
> greetings everybody,
>
> How do I know which other modules are