gpt4 book ai didi

zend-framework - Zend_Mail generateMessage() 导致 fatal error : Call to a member function getContent() on a non-object

转载 作者:行者123 更新时间:2023-12-04 20:59:27 27 4
gpt4 key购买 nike

我正在使用 Zend_Mail_Transport_Smtp 发送电子邮件。发送部分工作正常,但是,我正在努力尝试将电子邮件复制到发送电子邮件帐户的“已发送”文件夹中。当从 Zend_Mail 生成消息时,我不断收到 Call to a member function getContent() on a non-object.

这是我正在做的:

$config = array(
'auth' => 'login',
'username' => $from,
'password' => $password);

$transport = new Zend_Mail_Transport_Smtp('smtp.123-reg.co.uk', $config);
Zend_Mail::setDefaultTransport($transport);
$mail = new Zend_Mail('utf-8');

$mail->addTo('foo@bar.com');
$mail->setSubject('Test');
$mail->setFrom('baz@bar.com', 'Baz');
$mail->setBodyText('This is the email');

$mail->send();

**$message = $mail->generateMessage(); <----- here is the problem**

*This is where I would append the message to the sent folder.*
$mail = new Zend_Mail_Storage_Imap
array('host' => 'imap.123-reg.co.uk',
'user' => 'baz@bar.com',
'password' => 'p'
));
$mail->appendMessage($message,'Sent');

我不确定我是否遗漏了任何东西或以完全错误的方式执行此操作。任何帮助都会很棒。

最佳答案

好的,我找到了解决问题的方法。 Zend_mail 有缺陷/不完整,因为它实际上并没有从 Zend_mail 对象创建字符串(至少对于 ZF1 而言)。

我的解决方案可能不是最优雅的,但至少是可行的解决方案。我最终使用了 Swift Mailer——它在发送电子邮件方面非常优雅(它只处理发送电子邮件——而不是 IMAP 的东西)。一旦你使用 swift 创建了一条消息——调用 toString() 方法——然后你就可以使用 Zend_mail 的 appendMessage()。我从 rixtsa 在 http://php.net/manual/en/function.imap-append.php 中的帖子中得到了解决方案.也许ZF2没有这个问题,但是如果你在ZF1上你可以使用这个方法。

 // create the message
$message = Swift_Message::newInstance()
->setSubject('The subject')
->setFrom(array('a@b.com'=> 'Alfa Beta'))
->setTo(array('recipient1@r.com','recipient2@r.com'))
->setBody('The body is here= could be')
->addPart('<q>If you want html body use this method/q>', 'text/html')
;
//send the message
$transport = Swift_SmtpTransport::newInstance('smtp.123-reg.co.uk', 25)
->setUsername($user)
->setPassword($password)
;
$mailer = Swift_Mailer::newInstance($transport);
$result = $mailer->send($message);

// generate the string from the message
$msg = $message->toString();

// use the string with Zend_Mail_Storage_Imap's appendMessage()
$mail = new Zend_Mail_Storage_Imap(
array('host' => 'imap.123-reg.co.uk',
'user' => $user,
'password' => $password
));
$mail->selectFolder('Sent');
$mail->appendMessage($msg);

我希望有人能找到更好、更优雅的解决方案——甚至更好——bug 得到解决。但就目前而言,经过大量阅读和搜索后,我最终使用 Swift Mailer 来弥合差距。

关于zend-framework - Zend_Mail generateMessage() 导致 fatal error : Call to a member function getContent() on a non-object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15499118/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com