false,'error'=>'Method not allowed']); exit; } $data = json_decode(file_get_contents('php://input'), true); $email = trim($data['email'] ?? ''); if (empty($email) || !filter_var($email, FILTER_VALIDATE_EMAIL)) { echo json_encode(['success'=>false,'error'=>'Valid email required']); exit; } echo json_encode(resendVerification($email));