r_honey,
What laserlight is trying to point out, is that it's the use of heredoc that is preventing it from accessing your config variable. There are two ways you can fix this, don't use heredoc
//this
$text = "blah blah blah";
//insted of
$text = <<<ABC
blah blah blah
ABC;
Or assign your config variable as a variable in the method, so it can be accessed when useing heredoc.
$cfgImage = config::$Image;
$text = <<<ABC
<img class="Logo" title="My Logo" alt="Logo" src="$cfgImage"/Logo.gif" />
ABC;