Zend_Mailを設定して正常に動作していますが、PDF添付ファイルのpng画像がスクランブルされています。
これは、添付ファイルの責任を少し負っています。
$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);
何か案は?
前もって感謝します!
ピーター