Hi, any of the oldtimers know if in php4 one has to do this diffrently to send mail:
$headers = "From: ".$yourmail."\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
mail("$emailaddress","$subject","$content", "$headers");
The mail function works in the server I'm working with but doesn't send anything if I add the two lines "MIME-Version..." and "Content-type..." to the $headers variable.
Trying to get my client to upgrade to php 5 but meantime wonder if anyone here remembers this issue with php4?
thanks in advance