in reply to Re: Sendmail no longer working
in thread Sendmail no longer working
use strict; my $sendmail = '/usr/lib/sendmail -t'; open (MAIL,"|$sendmail") || "Not working: $!"; print MAIL <<"EOF"; To: smith\@here.com From: jones\@here.com Subject: theSubject Information here etc EOF close MAIL || "Not working: $!";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Sendmail no longer working
by jhourcle (Prior) on Jul 13, 2005 at 15:46 UTC |