如何检索电子邮件主题

时间:2011-12-18 22:32:41

标签: php zend-framework

可以用来检索电子邮件主题的$ mail对象的CORRECT方法是什么?我知道您可以使用“setSubject()”设置主题,但如何检索主题?

1 个答案:

答案 0 :(得分:3)

假设您正在谈论Zend_Mail,请参阅Zend_Mail::getSubject()

来自SVN

/**
 * Returns the encoded subject of the message
 *
 * @return string
 */
public function getSubject()
{
    return $this->_subject;
}