Forum Moderators: coopster
it returns something similar to this,
it returns a message with the following body (as text hot as rendered html>
Content-type: text/html; charset=iso-8859-1
<html><body bgcolor=black text=white link=yellow alink=yellow vlink=yellow><center><h1>User Registered</h1><hr width=85% color=blue><table cols=2 border=1 bordercolor=navy><tr><td>User:</td><td>username</td></tr> <tr><td>Pass:</td><td>password</td></tr><tr><td>Name:</td><td>Me Here</td></tr><tr><td>email</td><td>email@domian.com</td></tr> </table></center></body></html>
WHAT AM I DOING WRONG?
[edited by: jatar_k at 9:35 pm (utc) on April 12, 2004]
[edit reason] fixed sidescroll [/edit]
or did I missunderstood the question?
Henry
Edit: forgot <?> </end edit>
try messing around with the headers and see what happens, I have a set that I use most of the time and they seem to work. They are, at least, the most reliable set I have found.
$from = "From: $fromemail\n";
$from .= "X-Sender: $fromemail\n";
$from .= "X-Mailer: PHP\n";
$from .= "X-Priority: 3\n";
$from .= "Return-Path: $fromemail\n";
$from .= "Reply-To: $fromemail\n";
$from .= "Content-type: text/html\n";
I don't always use use Content Type, depends on my mood. :)