php send mail problem
Posted: Mon Sep 14, 2009 8:03 pm
i have a send mail problem i am using this code:
$to = 'fetta-@hotmail.com';
$subject = 'hi';
$message = 'hello';
$headers = 'From: fetta-@hotmail.com' . "\r\n" .
'Reply-To: fetta-@hotmail.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
it's not working i don't know why ... is it posibile thet the domain i am using is not alowing me to send mail's or what could it be.
$to = 'fetta-@hotmail.com';
$subject = 'hi';
$message = 'hello';
$headers = 'From: fetta-@hotmail.com' . "\r\n" .
'Reply-To: fetta-@hotmail.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
it's not working i don't know why ... is it posibile thet the domain i am using is not alowing me to send mail's or what could it be.