hello,                                                                      I have a 
php script that i have ran on a linux and bsd box, on both boxes the script will work 
and sendmail for a while, then it just seems to stop working. Does anyone have a idea 
why this is.

thanks,
-- 
jdavis <[EMAIL PROTECTED]>
 


<?php 
header("Location: http://www.xxx.com/CSacknowledge.html";);
  
$sendTo = '[EMAIL PROTECTED]';
$subject = 'Cutomer Service Request';
$body = "Customer Service Request \n\n";
$body .= "ip : " . $_SERVER['REMOTE_ADDR'] . "\n";
$body .= "date : " . date("l dS of F Y h:i:s A") . "\n";
foreach($_POST as $key => $value){
        if($value != NULL){
                if($value == "checkboxValue" ){
                        $value = "Add to Mailing List";
                }
                $body .= "$key : $value\n";
        }
}
mail($sendTo,$subject,$body);
?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to