可以用来检索电子邮件主题的$ mail对象的CORRECT方法是什么?我知道您可以使用“setSubject()”设置主题,但如何检索主题?
答案 0 :(得分:3)
假设您正在谈论Zend_Mail
,请参阅Zend_Mail::getSubject()
来自SVN
/**
* Returns the encoded subject of the message
*
* @return string
*/
public function getSubject()
{
return $this->_subject;
}