Redaxscript\Mailer::_createSubjectString PHP Method

_createSubjectString() protected method

create the subject contents
Since: 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;
    }