Help for this page

Select Code to Download


  1. or download this
    my @emailcmd = ('/usr/bin/mailx', 'uuencode', $zipfile, $zipfile, '-r'
    +, '-s');
    #and later
    ...
    my @args = (@emailcmd, $subject, $recipient);
    system(@args) == 0
     or die "system @args failed: $?";