| +-----------------------------------------------------------------------+ */ $text = stream_get_contents(fopen('php://input', 'r')); $converter = new rcube_text2html($text, false, array('wrap' => true)); header('Content-Type: text/html; charset=' . RCUBE_CHARSET); print $converter->get_html(); exit;