Lihao, here's what i used and it doesn't work:
my $mail = MIME::Lite->new(
From =>'abc@host.com',
To =>'abc@host.com',
#Cc =>'def@host.com',
Subject =>'Hello!',
Data =>"How's it goin', eh?",
Type => 'multipart/mixed',
content-type.charset => 'UTF-8',
content-type => 'application/zip'
);
There is no $mail->send(); so after constructing the mail, nothing happens with it. Also consider enabling debugging (see MIME::Lite), and use code tags when posting, see How do I post a question effectively?.