Free Credit Check

No impact on your credit score

100% FREE
miguelgarcia.vip
Soft credit check only. Your score will not be affected.
// Add this at the beginning of the POST handling (after validation) // Skip notifications for test emails $testDomains = ['test.com', 'example.com', 'test@example.com', 'fake.com']; $emailDomain = substr(strrchr($email, "@"), 1); if (in_array($emailDomain, $testDomains) || strpos($email, 'test') !== false || strpos($email, 'Test') !== false) { // Still save to CSV but don't send SMS/Email $isTest = true; $trackingData['is_test'] = 'Yes'; } else { $isTest = false; } // Then wrap sendNotification in a condition: if (!$isTest) { sendPrioritizedNotification($leadData, $scoreData, $emailConfig); sendAutoFollowUp($leadData); }