Has any one tried to have a Mail:

ender module working for you?
All i am trying is to have some sort of scheduled task for my local application. Nothing to do with teamsite for now. Its just simple Perl.
Here is the snippet which i am using to send out mail to a user. When i run this code it doesn't give me any error. But it doesn't even send me mail.
Please advice.
Thanks
use Mail:
ender;
$sender = new Mail:
ender
{smtp => '172.24.20.60', from => 'Andy.Anderson@necam.com'};
$sender->MailFile({to => 'Andy.Anderson@necam.com',
subject => 'Here is the file',
msg => "I'm sending you the list you wanted.",
file => 'filename.txt'});