我可以使用 Zend Mail 发送带有附件的测试邮件。这工作正常。像这样:
$mail = new Zend_Mail();
$mail->setFrom('test@test333.ch', 'test@test333.ch');
$mail->addTo('test@test333.ch444', 'Test');
$at = $mail->createAttachment($fileContents);
$at->type = 'image/gif';
$at->disposition = Zend_Mime::DISPOSITION_INLINE;
$at->encoding = Zend_Mime::ENCODING_BASE64;
$at->filename = 'test.gif';
$mail->setSubject(
'Hi'
);
$mail->setBodyText('...Your message here...');
$mail->send($transport);
}
现在我将添加一个额外的 Content-Type,我可以稍后阅读。像这样:
Content-Type:test/test-test
我怎么能用 ZF1 做到这一点?