in reply to Re^2: PERL MIME:LITE
in thread PERL MIME:LITE

What do you mean by "mail id"?

Is your machine capable of talking to an SMTP server and sending mail there?

Consider using the documented method of the ->send method:

$msg->send('smtp','some.host', Debug=>1 );

or alternatively, pass Debug => 1 in the constructor.

That way, maybe you see some more specific output of what goes wrong.

The most likely cause is that outgoing network traffic to port 25 is blocked. You will then have to consult with your network administrator on how to best proceed.