| | |
| | | else if ($mimetype == 'multipart/alternative' |
| | | && is_array($structure->parts) && count($structure->parts) > 1 |
| | | ) { |
| | | $plain_part = null; |
| | | $html_part = null; |
| | | $print_part = null; |
| | | $related_part = null; |
| | | $attach_part = null; |
| | | |
| | | // get html/plaintext parts, other add to attachments list |
| | | foreach ($structure->parts as $p => $sub_part) { |
| | | $sub_mimetype = $sub_part->mimetype; |
| | |
| | | { |
| | | // @TODO: attachment may be huge, handle body via file |
| | | $body = $this->get_part_body($part->mime_id); |
| | | $tnef = new tnef_decoder; |
| | | $tnef = new rcube_tnef_decoder; |
| | | $tnef_arr = $tnef->decompress($body); |
| | | $parts = array(); |
| | | |