I had the same issues and have modified the line suggested by Eelco with random image dimensions, larger than 1px as 1x1 caused the problems, smaller than 8 to avoid the image to become too large. As no severe security restrictions apply, I think the rand() will just do here 
Code:
$img_h = rand(2, 7);
$img_w = rand(2, 7);
$mail->Body .= "<br><IMG HEIGHT='" . $img_h . "' WIDTH='" . $img_w . "' src='{$this->tracking_url}index.php?entryPoint=image&identifier={$this->target_tracker_key}'>"; Hope this helps.
Bookmarks