PHP is writing this error in the logs: \"Notice: Use of undefined constant\".
Error in logs:
PHP Notice: Use of undefined constant
You missed putting single quotes around your array keys:
$_POST[email]
should be:
$_POST['email']