in reply to Re^3: Unable to send email using MIME::Lite
in thread Unable to send email using MIME::Lite

"Need MIME::Base64 and Authen::SASL todo auth"

So do you have MIME::Base64 and Authen::SASL installed?

  • Comment on Re^4: Unable to send email using MIME::Lite

Replies are listed 'Best First'.
Re^5: Unable to send email using MIME::Lite
by sabari (Beadle) on Apr 29, 2010 at 04:35 UTC
    Thanks .. After installing that modules now the above code working fine . We needs to add below lines in above my code .
    use MIME::Base64; use Authen::SASL;
    Best Regards, S.Sabarinathan,

      We needs to add below lines in above my code .

      Looking at the code, I can't see how that could possibly be true. The modules attempts to load them. If they're not installed, the loading fails and you get the earlier error message. There's no need to load them in advance.

        Ya of course no needs to load that is optional to load them ,but needs to be installed
        Best Regards, S.Sabarinathan,