Re: printing FILE HANDLE to mail

2002-05-17 Thread Jaime Hourihane
Thanks for the reply Shaun that worked perfect I guess being a web master you ran into this problem with CGI ;-) Jaime -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: printing FILE HANDLE to mail

2002-05-17 Thread Shaun Fryer
> print SENDMAIL <<"EOF"; > From: Root > To: Unix Admin <$unixadm> > Subject: $subject > Hello > $text > EOF You have to have an extra new line after the Subject such as follows. -- print SENDMAIL <<"EOF"; From: Root To: Unix Admin <$unixadm> Subject: $subject Hello $text

printing FILE HANDLE to mail

2002-05-17 Thread Jaime Hourihane
Hello fellow perl enthusiasts I want to be able to open a Mail File Handle and have seperate file go this Mail File Handle I have some code like this: --- #!/util/perl5.static -w $unixadm = "hourihj"; $report = "/etc/passwd"; $hostname = qx(/usr/ucb/hos