<?php
//okundu.php?mail=gidenmail@domain.com
//1x1 lik resim
$resim = imagecreate(1,1);
header("Content-type: image/jpeg");
imagejpeg($resim);
imagedestroy($resim);
//Log tut
$dosya = fopen('mailokundu.txt', 'a+');
$yazilacak = $_GET['mail']." - ".date("d.m.y - H:i:s")." - ".$_SERVER['REMOTE_ADDR']."\n";
fwrite($dosya, $yazilacak);
fclose($dosya);
?>
okundu.php şeklinde kaydet. Gönderdiğin maillerin içerisine;
Alıntı
<img src="http://www.sitem.com/okundu.php?mail=gidenmail@domain.com" width="1" height="1">
bunu ekle.

Tek tek yazmayacağın için;
Alıntı
<img src="http://www.sitem.com/okundu.php?mail=<?php echo $mail; ?>" width="1" height="1">
Ekleyebilirsin sana kalmış bişey.