Email script not working after upgrade to v. 4.3
Posted: Sat Oct 23, 2004 10:30 am
After my host updated the PHP version to 4.3, all of my mail scripts fail.
Any idea what I should look into it? This was working fine before the version upgrade.
Code: Select all
$eaddress = blah@blah.com
$subject = "blah";
$msg = "blah blah blah";
$headers = "From: vera@mediasparkles.com\nContent-Type: text/html";
mail($eaddress, $subject, $msg, $headers);