mailx

How can i send an email through UNIX mailx command

How can i send an email through UNIX mailx command ...

Why can't I pipe the output of uuencode to mailx in a single Perl open statement?

Here's my code that is not working: print "To: "; my $to=<>; chomp $to; print "From: "; my $from=<>; chomp $from; print "Attach: "; my $attach=<>; chomp $attach; print "Subject: "; my $subject=<>; chomp $subject; print "Message: "; my $message=<>; chomp $message; my $mail_fh = \*MAIL; open $mail_fh, "uuencode $attach $attach |mailx...