I have inherited a Perl script which sends and parses email. I am having
trouble trying to figure out what the "-oi" and "-oem" arguments do in the
sub below. Can anyone help?

Thanks
John

sub mail(*) {
        my $top = shift;
        open(MAIL, "| $sendmail -t -oi -oem") or die "open: $!";
        $top->print(\*MAIL);
        close MAIL;
}


-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to