its working !!

howto:
create a email.png file (ms paint, photoshop) size 275x20.
create a file called email.php, wich contains te following:
Code:
<?php
header("Content-type: image/png");
$im = imagecreatefrompng("email.png");
$color = imagecolorallocate($im, 0, 0, 0);
$px = (imagesx($im) - 7.5 * strlen($user)) / 2;
imagestring($im, 4, $px, 1, $user, $color);
imagepng($im);
imagedestroy($im);
?>
upload these to files to the forum root dir.
open the MEMBERINFO template, and search for
$userinfo[msn]
and replace that with
<img src="email.php?user=$userinfo[msn]" border="0">
thats it !