- or download this
open(SENDMAIL, '|/usr/sbin/sendmail -oi -t')
or (unlink ($outfile),
diehtml("Can't fork for sendmail: $!\n"));
- or download this
open(SENDMAIL, '|/usr/sbin/sendmail -oi -t')
or do{ unlink($outfile); diehtml("Can't fork for sendmail: $!\n")};
- or download this
TRUE or do{does not get done}
FALSE or do{does get done}
- or download this
print SENDMAIL $msg
close SENDMAIL;
- or download this
warn "Before SENDMAIL open\n";
open(SENDMAIL.....)
warn "After open\n";
- or download this
[root@devel3 root]# which sendmail
/usr/sbin/sendmail
...
Hello Me!
[root@devel3 root]#