Variables don't need to be quoted. Only string literal array indices outside of strings and within complex syntax should be quoted, because, well, they're strings:
$_POST['email'];
"$_POST[email]";
"{$_POST['email']}";
$key = 'email';
$_POST[$key];
"${_POST[$key]}";
"{$_POST[$key]}"...