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

v1.0.2 2025-10-02 10:12 UTC

This package is auto-updated.

Last update: 2025-12-02 10:33:56 UTC


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
}