Redaxscript\Mailer::_createBodyString PHP Method

_createBodyString() protected method

create the body contents
Since: 2.0.0
protected _createBodyString ( )
    protected function _createBodyString()
    {
        if (is_array($this->_body)) {
            foreach ($this->_body as $key => $value) {
                $this->_bodyString .= $value;
            }
        } else {
            $this->_bodyString = $this->_body;
        }
    }