I'm having trouble with the from header in the below mail script. Can anyone help?
function is_valid_email($from_email)
{
return preg_match('#^[a-z0-9.!\#$%&\'*+-/=?^_`{|}~]+@([0-9.]+|([^\s\'"<>]+\.+[a-z]{2,6}))$#si', $from_email);
}
$headers = "From: " . $_POST["name"];
$headers .=...