Re: Email is blank to a .net address works fine for .com



Joe Joe wrote:
$headers .= "To: <".$email.">\r\n"; $headers .= "From:
".$from.">\r\n"; mail($to, $subject, $message, $headers);
echo $from.' '.$email,' '.$title.' '.$message;
*/

Do you set $to at all or do you rely on headers?
What happens if you don't set To: etc. in the headers, but instead use:

mail($email, $subject, $message, $headers);

Grtz,
--
Rik Wasmus


.