Swift_Mime_MimePart::setFormat PHP Method

setFormat() public method

Set the format of this entity (flowed or fixed).
public setFormat ( string $format ) : Swift_Mime_MimePart
$format string
return Swift_Mime_MimePart
    public function setFormat($format)
    {
        $this->_setHeaderParameter('Content-Type', 'format', $format);
        $this->_userFormat = $format;
        return $this;
    }