skuz-ko / php-email-open-bot-detection
A PHP library for detecting email open bots.
Installs: 690
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/skuz-ko/php-email-open-bot-detection
Requires
- php: ^8.1
Requires (Dev)
- phpunit/phpunit: ^10.5
README
A PHP library to detect email open bots, helping distinguish between real users and automated bots that trigger email open events. This improves the accuracy of your email campaign analytics.
Features
- Detects common email open bots
- Easy integration with PHP projects via Composer
- Lightweight and efficient
Installation
composer require skuz-ko/php-email-open-bot-detection
Usage
<?php use SkuzKo\PhpEmailOpenBotDetection\EmailOpenBotDetector; if (EmailOpenBotDetector::isBot($_SERVER['HTTP_USER_AGENT'])) { // Handle bot } else { // Handle real user }