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: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/
