>
>    // pull fields from form query
>    $to = "[EMAIL PROTECTED]";
>    $name = $HTTP_POST_VARS['name'];
>    $address = $HTTP_POST_VARS['address'];
>    $listname = $HTTP_POST_VARS['listname'];
>    $action = strtoupper($HTTP_POST_VARS['action']);
>
>    // build headers
>    $from = "\"$name\" <$address>\r\n";
>    $message = $action." ".$listname." ".$name."\r\n";
>    $message .= "EXIT\r\n";
>
>    $headers = "MIME-Version: 1.0\r\n";
>    $headers .= "Content-type: text/plain; charset=iso-8859-1\r\n";
>    $headers .= "From: ".$from."\r\n";
>    $headers .= "Reply-to: ".$from."\r\n";


You have an extra \r\n.  There is one contained in the variable $from so the
line $headers .= "From: ".$from."\r\n"; is putting \r\n\r\n which signifies
the end of the headers and the begining of the message body.


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

Reply via email to