setStructureFromMail($msgFolder, $msgNumber); $fileContent = $attachmentObj->getAttachment($part); header("Content-Disposition: inline"); echo $fileContent; } else if($_SESSION['phpgw_info']['expressomail']['contact_photo']) { $data = $_SESSION['phpgw_info']['expressomail']['contact_photo']; if($data) { $photo = imagecreatefromstring($data[0]); if($photo) { $width = imagesx($photo); $height = imagesy($photo); $twidth = 60; $theight = 80; $small_photo = imagecreatetruecolor ($twidth, $theight); imagecopyresampled($small_photo, $photo, 0, 0, 0, 0,$twidth, $theight, $width, $height); imagejpeg($small_photo,'',100); unset($_SESSION['phpgw_info']['expressomail']['contact_photo']); } } } else readfile("./../../contactcenter/templates/default/images/photo_celepar.png"); //------------------------------------------// ?>