Different versions of SugarCRM have a little difference, but probably it not solve the problem.
Sugar 5.0
PHP Code:
// cn: bug 11979 - adding single quote to comform with HTML email RFC
$mail->Body .= "<br><IMG HEIGHT='1' WIDTH='1' src='{$this->tracking_url}image.php?identifier={$this->target_tracker_key}'>";
Sugar 5.2
PHP Code:
// cn: bug 11979 - adding single quote to comform with HTML email RFC
$mail->Body .= "<br><IMG HEIGHT='1' WIDTH='1' src='{$this->tracking_url}index.php?entryPoint=image&identifier={$this->target_tracker_key}'>";
Bookmarks