У меня настроена Zend_Mail и она работает нормально, но png-изображения в моем приложении pdf зашифрованы.
Это бит, отвечающий за вложение:
$filecontents = file_get_contents($attachment);
$att = $this->mail->createAttachment($filecontents);
$att->disposition = 'Zend_Mime::DISPOSITION_INLINE';
$att->encoding = 'Zend_Mime::ENCODING_BASE64';
$att->filename = 'result.pdf';
$att->type = 'application/pdf';
PDF создается с Zend_Pdf
PNG добавляется так:
$image = Zend_Pdf_Image::imageWithPath("path/to/png.png");
$this->page->drawImage($image, $left, $bottom, $right, $top);
Есть идеи?
Заранее спасибо!
Питер