Redaxscript\Mailer::_createSubjectString PHP 메소드

_createSubjectString() 보호된 메소드

create the subject contents
부터: 2.0.0
protected _createSubjectString ( )
    protected function _createSubjectString()
    {
        /* collect subject string */
        $subject = Db::getSetting('subject');
        /* extended subject string */
        if ($subject) {
            $this->_subjectString = $subject;
            if ($this->_subject) {
                $this->_subjectString .= Db::getSetting('divider');
            }
        }
        $this->_subjectString .= $this->_subject;
    }