Help for this page
my $msg = MIME::Lite->new( To => 'Alias@xxxx.com', ... Type => 'text/plain, Data => $message );
open $CMD, "|/usr/bin/mailx -s \'$subject\' Alias\@xxxx.com" or die("C +annot open CMD"); print $CMD $message; close $CMD;