PHP Version 4.2.2
see my code-fragment for understanding my problem
if ($email) {mail($to, "$subject", "$mailtext","From: $email" );}
it works fine. sending of the mail is succesfully; but after execution of this order the user on my website gets an echo:
"Who are you?: No such file or directory"
a friend told me to set an "@" in front of the mailcommand to supress any warning.
if ($email) { @mail($to, "$subject", "$mailtext","From: $email" );}
but this will not change the situation
any help?
Thilo