i don't really understand your question.
for the extended headers in mail use something like this:
$to = "[EMAIL PROTECTED]";
$subject = "some subject";
$header = "content-type: text/html; charset=\"iso-8859-1\"\n".
"from: \"[EMAIL PROTECTED]"\n";
$message = "some message";
if (mail($to, $subject, $message, $header))
{
echo "message sent";
}
else
{
echo "error, not sent";
}
but if you have problems with $_POST, maybe some code (your form and your script)
could help.
ciao SVEN
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED]
hi everybody,
i'am have problem about php send mail function, how can i send extra header with
it's. I'am crazy now because I can send it by using users defined variable , but when
I've send it with a html form, it's don't work at all by use $_POST variable
please help me,
thanks you,
.....