I ran the script using "sudo perl mail.pl"
use MIME::Lite;
$msg = MIME::Lite->new(
From =>'[email protected]',
To =>'[email protected]',
Subject =>'Helloooooo!',
Data =>"How's it goin', eh?"
);
$msg->send();
No errors came up or anything buit there is no mail in my inbox
use MIME::Lite;
$msg = MIME::Lite->new(
From =>'[email protected]',
To =>'[email protected]',
Subject =>'Helloooooo!',
Data =>"How's it goin', eh?"
);
$msg->send();
No errors came up or anything buit there is no mail in my inbox