Hi,
I am sending HTML mail using the function
function sendHTMLmail($fromid,$to,$subject,$message)
{
$headers = "From: $fromid\n";
$headers .= "Reply-To: $fromid\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$headers .= "Content-Transfer-Encoding: 8bit;\r\n\r\n";
$headers .= stripslashes($message);
$headers .= "\r\n";
@mail("$to", "$subject", "", "$headers");
}
Now the problem is that I would like to display a simple message for clients who cannot receive HTML mails .Is this possible?
Thanks in advance,
Hexguy