<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.mailparse.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.mailparse.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.mailparse.php',
    1 => 'Mailparse',
  ),
  'prev' => 
  array (
    0 => 'book.mailparse.php',
    1 => 'Mailparse',
  ),
  'next' => 
  array (
    0 => 'mailparse.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mailparse/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.mailparse" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   Mailparse is an extension for parsing and working with email messages.
   It can deal with <a href="https://datatracker.ietf.org/doc/html/rfc822" class="link external">&raquo;&nbsp;RFC 822</a> and <a href="https://datatracker.ietf.org/doc/html/rfc2045" class="link external">&raquo;&nbsp;RFC 2045</a> (<code class="literal">MIME</code>) compliant
   messages.
  </p>
  <p class="para">
   Mailparse is stream based, which means that it does not keep in-memory
   copies of the files it processes - so it is very resource efficient when
   dealing with large messages.
  </p>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    Mailparse requires the <a href="book.mbstring.php" class="link">mbstring</a>
    extension, and mbstring must be loaded before mailparse.
   </p>
  </p></blockquote>
 </div><?php manual_footer($setup); ?>