本文介紹了轉發 Zend_Mail_Message的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
是否有一種簡單的方法可以將 Zend_Mail_Message
轉發給另一個收件人?
Is there an easy way how I could forward Zend_Mail_Message
to another recipient?
我只想添加收件人地址,FWD:"作為主題并將現有的 Zend_Mail_Message
作為附件或內嵌消息轉發.
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();
那么不,這是不可能的.但您始終可以手動更改主題、添加收件人并從舊郵件創建附件:
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();
此外,這可能有幫助
這篇關于轉發 Zend_Mail_Message的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!