本文介紹了轉(zhuǎn)發(fā) Zend_Mail_Message的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
是否有一種簡(jiǎn)單的方法可以將 Zend_Mail_Message
轉(zhuǎn)發(fā)給另一個(gè)收件人?
Is there an easy way how I could forward Zend_Mail_Message
to another recipient?
我只想添加收件人地址,F(xiàn)WD:"作為主題并將現(xiàn)有的 Zend_Mail_Message
作為附件或內(nèi)嵌消息轉(zhuǎn)發(fā).
I would like just add the recipients address, "FWD:" to subject and forward existing Zend_Mail_Message
as attachment or inline message.
推薦答案
如果你的意思是這樣的
$oldMail = new Zend_Mail_Storage_Imap();
$mail = new Zend_Mail($oldMail);
$mail->addTo($oneEmail);
$mail->send();
那么不,這是不可能的.但您始終可以手動(dòng)更改主題、添加收件人并從舊郵件創(chuàng)建附件:
Then no, it's not possible. But you can always manually change the subject, add recipient's, and create an attachment from your old message:
//connect with imap
$oldMail = new Zend_Mail_Storage_Imap(array(
'host' => 'example.com',
'user' => 'test',
'password' => 'test'));
$newBody = $_POST['body']; //new body text
//If you want to download previous message
$messageNum = 8; //you have to know message number
$oldMessage = $mail->getMessage($messageNum); //in order to get it
$mail = new Zend_Mail();
$mail->addTo($oldMail->getEmail())
->setSubject('RE: ' . $message->subject)
->setBodyText($newBody);
//create an attachment
$attachment = $mail->createAttachment($message->getContent());
$attachment->type = 'text/plain';
$attachment->filename = 'RE.txt';
$message->addAttachment($attachment);
$mail->addTo($email);
$mail->send();
此外,這可能有幫助
這篇關(guān)于轉(zhuǎn)發(fā) Zend_Mail_Message的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!
【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!