header("Location: mailto:xxx@xxx.com") will work in IE but not in Netscape does anybody know how to get this work in Netscape?? i even tried the header("Location: mailto:xxx@xxx.com\n") wont work either!!
can you use this function:
function redirect($url){ print "<meta http-equiv=\"Refresh\" content=\"0;url=".$url."\">"; die;
When you call the function
use:
redirect("mailto:someone@somewhere.com");
hope that helps..