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

Er, yes but that was the answer to the wrong question - you need to know the name of the SMTP server in order to tell MIME::Lite.

/J\

Replies are listed 'Best First'.
Re^8: MIME::Lite question
by Anonymous Monk on Jun 15, 2005 at 12:23 UTC

    i am working in intranet, the ip address of the server is 192.168.1.5.

    if ($I_DONT_HAVE_SENDMAIL) { MIME::Lite->send('SMTP', "192.168.1.5", Timeout=>60); } else { MIME::Lite->send('SMTP', "192.168.1.5", Timeout=>60); }

    i am using the above coding to send the mail.