File: html2text.inc

package info (click to toggle)
roundcube 0.7.2-9%2Bdeb7u2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 13,080 kB
  • sloc: php: 56,554; pascal: 3,416; sql: 1,502; sh: 1,009; xml: 806; makefile: 52; ansic: 32; python: 21
file content (33 lines) | stat: -rw-r--r-- 1,307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/*

 +-----------------------------------------------------------------------+
 | program/steps/utils/html2text.inc                                     |
 |                                                                       |
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2005-2010, The Roundcube Dev Team                       |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 | PURPOSE:                                                              |
 |   Convert HTML message to plain text                                  |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
 +-----------------------------------------------------------------------+

 $Id: html2text.inc 4410 2011-01-12 18:25:02Z thomasb $

*/

$html = $HTTP_RAW_POST_DATA;

// Replace emoticon images with its text representation
$html = rcmail_replace_emoticons($html);

$converter = new html2text($html);

header('Content-Type: text/plain; charset=UTF-8');
print rtrim($converter->get_text());
exit;