<?
$email = "myemail@gmail.com";
$subiect = "Trying";
$mesaj = "Hello";
$headers = 'From: My Name' . "\r\n" .
'Reply-To: My Name' . "\r\n";
mail($email,$subiect, stripslashes($mesaj), $headers);
?>
If I run this code, in the email box I'll get a new email in which the name is without space.
I'll get a new message with from "MyName".
Does anybody have any idea how to fix this ?
I searched a lot in the php manual and in google but nothing helped me.
Thanks
