Hi,
When sending mail using mail();
I always get a newline at the begining of my mail bodytext
I found that when I removed my header data, the problem disapeared
here are the header data
$headers = "From:".$getUser->username."<".$getUser->usermail.">\r\n";
$headers .= "Content-Type: text/plain \r\n";
and mail();
mail($_REQUEST['authorEmail'],$subject,$mailBody,$headers);
I have read through the manual, and searched google and removed spacers and so on but have'nt forund anything about it,
Is there anyone out there that knows what the problem is?
regards Thomas