|
Posted by Sisyphus on August 15, 2007, 9:20 am
Please log in for more thread options
.
.
> On my server, and with the last version of the module, the first option
> doesn't work.
Precisely which version are you running ?
Latest version on CPAN is 1.21 and, according to the docs, the "first
option" should work fine with that version.
> Do you know why ?
Nope.
> Has it changed with newer versions of the module ?
I tend to expect that "the first option" should work with the most recent
versions of Net::SMTP, but perhaps not with earlier versions.
Can you check which version of Net::SMTP you are running:
perl -MNet::SMTP -e 'print $Net::SMTP::VERSION'
or, if you're on Windows:
perl -MNet::SMTP -e "print $Net::SMTP::VERSION"
Whichever version you're running, the behaviour should be as documented in
'perdoc Net::SMTP'.
Cheers,
Rob
|