in reply to Re^3: MIME::Lite question
in thread MIME::Lite question

Thanks for your reply, i included that line after use, i am getting the following error.

Can't locate object method "send_by_intranet.suresoft.info" via packag +e "MIME ::Lite" at C:/Perl/site/lib/MIME/Lite.pm line .

Also i changed the last line to $msg->send("intranet.suresoft.info")

Replies are listed 'Best First'.
Re^5: MIME::Lite question
by kwaping (Priest) on Jun 15, 2005 at 16:44 UTC
    Try this instead of the line I previously recommended:
    MIME::Lite->send('smtp', 'send_by_intranet.suresoft.info', Timeout=>60 +);
    (Adapted from the MIME::Lite documentation.)
    Then go back to just $msg->send; . This is basically what jbrugger said in the first post, modified for the specifics of your system and without the if() statement.