Posted by Stefan Mueller on 11/24/05 14:51
> $headers .="From: User <user@inter.net>\r\n";
>
> For each line in the header you need \r\n, so that the MTA will know where
> something ends.
I can't believe it. It's still not working.
My header has the following three lines:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: User <user@inter.net>\r\n";
Does someone have any further guess what could be wrong?
Stefan
PS: It's still working if I use
$headers .= "From: user@inter.net\r\n";
But
$headers .= "From: <user@inter.net>\r\n";
also doesn't work!
Navigation:
[Reply to this message]
|