I m newbie at perl.I'm trying to use Mime::Lite.I looked their site and i try to sending mail this way
#!/usr/bin/perl
use MIME::Lite;
$msg = MIME::Lite->new(
From =>'cassidy@hotmail.com',
To =>'ericafb77@gmail.com',
Cc =>'some@other.com, some@more.com',
Subject =>'Helloooooo, nurse!',
Data =>"AAA"
);
$msg->send;
But mail did not come to my mail adress.What should i do?