Hi,

I just want to send email using MIME::Lite with Net::SMTP::SSL.
But MIME::Lite is going only with Net::SMTP by default.
So I searched and found a hack:

use Net::SMTP::SSL;
BEGIN { @MIME::Lite::SMTP::ISA = qw(Net::SMTP::SSL); }

This does work, now I can send messages with SMTPs.
But how does this work? Thank you.

Regards.

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to