我有我的Zend_Mail設置和工作正常,但在我的PDF附件中的PNG圖像得到炒。Zend郵件 - 附件 - 嵌入式PNG獲取炒作
這是位負責附件:
$image = Zend_Pdf_Image::imageWithPath("path/to/png.png");
$this->page->drawImage($image, $left, $bottom, $right, $top);
任何想法:
$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添加這樣創造出來的?
在此先感謝!
Peter
謝謝,總是忽略了引號:s – Peter 2012-03-11 10:13:51