Do you have access to the mail server logs? Could you check if there's a reason why the e-mail didn't send?
$headers = "MIME-Version: 1.0\r\n";$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";$headers .= 'From: ' . $email . "\r\n";
Try these headers instead:PHP Code: [Select]$headers = "MIME-Version: 1.0\r\n";$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";$headers .= 'From: ' . $email . "\r\n";