有没有办法从 Zend_Mail 对象中删除附件?简单的例子:
$mail = new Zend_Mail();
//..configuring the email..
$mail->createAttachment($myImage,
'image/gif',
Zend_Mime::DISPOSITION_INLINE,
Zend_Mime::ENCODING_BASE64);
$mail->send();
现在,我想修改对象并再次发送
$mail->clearSubject()
->setSubject('new subject');
是否有可能从之前设置的该对象中删除附件?