<?xml version="1.0" encoding="utf-8"?>
<project version="2.0.0a8" title="PHPMailer">
  <file path="class.phpmailer.php" hash="e16a4465ebf7447240b482682968cf59" package="PHPMailer">
    <docblock line="25">
      <description><![CDATA[PHPMailer - PHP email creation and transport class
NOTE: Requires PHP version 5 or later]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="25" name="package" description="PHPMailer"/>
      <tag line="25" name="author" description="Andy Prevost"/>
      <tag line="25" name="author" description="Marcus Bointon"/>
      <tag line="25" name="author" description="Jim Jagielski"/>
      <tag line="25" name="copyright" description="2010 - 2012 Jim Jagielski"/>
      <tag line="25" name="copyright" description="2004 - 2009 Andy Prevost"/>
      <tag line="25" name="license" description="http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License"/>
    </docblock>
    <include line="960" type="Require Once" package="Default">
      <name/>
    </include>
    <include line="1142" type="Include" package="Default">
      <name/>
    </include>
    <class final="false" abstract="false" namespace="global" line="43" package="PHPMailer">
      <extends/>
      <name>PHPMailer</name>
      <full_name>\PHPMailer</full_name>
      <docblock line="39">
        <description><![CDATA[PHP email creation and transport class]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="39" name="package" description="PHPMailer"/>
      </docblock>
      <constant namespace="global" line="490" package="PHPMailer">
        <name>STOP_MESSAGE</name>
        <full_name>STOP_MESSAGE</full_name>
        <value><![CDATA[0]]></value>
      </constant>
      <constant namespace="global" line="491" package="PHPMailer">
        <name>STOP_CONTINUE</name>
        <full_name>STOP_CONTINUE</full_name>
        <value><![CDATA[1]]></value>
      </constant>
      <constant namespace="global" line="492" package="PHPMailer">
        <name>STOP_CRITICAL</name>
        <full_name>STOP_CRITICAL</full_name>
        <value><![CDATA[2]]></value>
      </constant>
      <constant namespace="global" line="493" package="PHPMailer">
        <name>CRLF</name>
        <full_name>CRLF</full_name>
        <value><![CDATA["\r\n"]]></value>
      </constant>
      <property final="false" static="false" visibility="public" line="53" namespace="global" package="Default">
        <name>$Priority</name>
        <default><![CDATA[3]]></default>
        <docblock line="49">
          <description><![CDATA[Email priority (1 = High, 3 = Normal, 5 = low).]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="49" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="59" namespace="global" package="Default">
        <name>$CharSet</name>
        <default><![CDATA['iso-8859-1']]></default>
        <docblock line="55">
          <description><![CDATA[Sets the CharSet of the message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="55" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="65" namespace="global" package="Default">
        <name>$ContentType</name>
        <default><![CDATA['text/plain']]></default>
        <docblock line="61">
          <description><![CDATA[Sets the Content-type of the message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="61" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="72" namespace="global" package="Default">
        <name>$Encoding</name>
        <default><![CDATA['8bit']]></default>
        <docblock line="67">
          <description><![CDATA[Sets the Encoding of the message.]]></description>
          <long-description><![CDATA[<p>Options for this are
 "8bit", "7bit", "binary", "base64", and "quoted-printable".</p>]]></long-description>
          <tag line="67" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="78" namespace="global" package="Default">
        <name>$ErrorInfo</name>
        <default><![CDATA['']]></default>
        <docblock line="74">
          <description><![CDATA[Holds the most recent mailer error message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="74" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="84" namespace="global" package="Default">
        <name>$From</name>
        <default><![CDATA['root@localhost']]></default>
        <docblock line="80">
          <description><![CDATA[Sets the From email address for the message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="80" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="90" namespace="global" package="Default">
        <name>$FromName</name>
        <default><![CDATA['Root User']]></default>
        <docblock line="86">
          <description><![CDATA[Sets the From name of the message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="86" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="97" namespace="global" package="Default">
        <name>$Sender</name>
        <default><![CDATA['']]></default>
        <docblock line="92">
          <description><![CDATA[Sets the Sender email (Return-Path) of the message.]]></description>
          <long-description><![CDATA[<p>If not empty,
will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.</p>]]></long-description>
          <tag line="92" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="104" namespace="global" package="Default">
        <name>$ReturnPath</name>
        <default><![CDATA['']]></default>
        <docblock line="99">
          <description><![CDATA[Sets the Return-Path of the message.]]></description>
          <long-description><![CDATA[<p>If empty, it will
be set to either From or Sender.</p>]]></long-description>
          <tag line="99" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="110" namespace="global" package="Default">
        <name>$Subject</name>
        <default><![CDATA['']]></default>
        <docblock line="106">
          <description><![CDATA[Sets the Subject of the message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="106" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="117" namespace="global" package="Default">
        <name>$Body</name>
        <default><![CDATA['']]></default>
        <docblock line="112">
          <description><![CDATA[Sets the Body of the message.]]></description>
          <long-description><![CDATA[<p>This can be either an HTML or text body.
If HTML then run IsHTML(true).</p>]]></long-description>
          <tag line="112" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="126" namespace="global" package="Default">
        <name>$AltBody</name>
        <default><![CDATA['']]></default>
        <docblock line="119">
          <description><![CDATA[Sets the text-only body of the message.]]></description>
          <long-description><![CDATA[<p>This automatically sets the
email to multipart/alternative.  This body can be read by mail
clients that do not have HTML email capability such as mutt. Clients
that can read HTML will view the normal Body.</p>]]></long-description>
          <tag line="119" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="133" namespace="global" package="Default">
        <name>$MIMEBody</name>
        <default><![CDATA['']]></default>
        <docblock line="128">
          <description><![CDATA[Stores the complete compiled MIME message body.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="128" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="128" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="140" namespace="global" package="Default">
        <name>$MIMEHeader</name>
        <default><![CDATA['']]></default>
        <docblock line="135">
          <description><![CDATA[Stores the complete compiled MIME message headers.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="135" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="135" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="147" namespace="global" package="Default">
        <name>$mailHeader</name>
        <default><![CDATA['']]></default>
        <docblock line="142">
          <description><![CDATA[Stores the extra header list which CreateHeader() doesn't fold in]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="142" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="142" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="154" namespace="global" package="Default">
        <name>$WordWrap</name>
        <default><![CDATA[0]]></default>
        <docblock line="149">
          <description><![CDATA[Sets word wrapping on the body of the message to a given number of
characters.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="149" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="160" namespace="global" package="Default">
        <name>$Mailer</name>
        <default><![CDATA['mail']]></default>
        <docblock line="156">
          <description><![CDATA[Method to send mail: ("mail", "sendmail", or "smtp").]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="156" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="166" namespace="global" package="Default">
        <name>$Sendmail</name>
        <default><![CDATA['/usr/sbin/sendmail']]></default>
        <docblock line="162">
          <description><![CDATA[Sets the path of the sendmail program.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="162" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="173" namespace="global" package="Default">
        <name>$UseSendmailOptions</name>
        <default><![CDATA[true]]></default>
        <docblock line="168">
          <description><![CDATA[Determine if mail() uses a fully sendmail compatible MTA that
supports sendmail's "-oi -f" options]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="168" name="var" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="180" namespace="global" package="Default">
        <name>$PluginDir</name>
        <default><![CDATA['']]></default>
        <docblock line="175">
          <description><![CDATA[Path to PHPMailer plugins.]]></description>
          <long-description><![CDATA[<p>Useful if the SMTP class
is in a different directory than the PHP include path.</p>]]></long-description>
          <tag line="175" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="186" namespace="global" package="Default">
        <name>$ConfirmReadingTo</name>
        <default><![CDATA['']]></default>
        <docblock line="182">
          <description><![CDATA[Sets the email address that a reading confirmation will be sent.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="182" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="194" namespace="global" package="Default">
        <name>$Hostname</name>
        <default><![CDATA['']]></default>
        <docblock line="188">
          <description><![CDATA[Sets the hostname to use in Message-Id and Received headers
and as default HELO string.]]></description>
          <long-description><![CDATA[<p>If empty, the value returned
by SERVER_NAME is used or 'localhost.localdomain'.</p>]]></long-description>
          <tag line="188" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="201" namespace="global" package="Default">
        <name>$MessageID</name>
        <default><![CDATA['']]></default>
        <docblock line="196">
          <description><![CDATA[Sets the message ID to be used in the Message-Id header.]]></description>
          <long-description><![CDATA[<p>If empty, a unique id will be generated.</p>]]></long-description>
          <tag line="196" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="208" namespace="global" package="Default">
        <name>$MessageDate</name>
        <default><![CDATA['']]></default>
        <docblock line="203">
          <description><![CDATA[Sets the message Date to be used in the Date header.]]></description>
          <long-description><![CDATA[<p>If empty, the current date will be added.</p>]]></long-description>
          <tag line="203" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="224" namespace="global" package="Default">
        <name>$Host</name>
        <default><![CDATA['localhost']]></default>
        <docblock line="214">
          <description><![CDATA[Sets the SMTP hosts.]]></description>
          <long-description><![CDATA[<p>All hosts must be separated by a
semicolon.  You can also specify a different port
for each host by using this format: [hostname:port]
(e.g. "smtp1.example.com:25;smtp2.example.com").
Hosts will be tried in order.</p>]]></long-description>
          <tag line="214" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="230" namespace="global" package="Default">
        <name>$Port</name>
        <default><![CDATA[25]]></default>
        <docblock line="226">
          <description><![CDATA[Sets the default SMTP server port.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="226" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="236" namespace="global" package="Default">
        <name>$Helo</name>
        <default><![CDATA['']]></default>
        <docblock line="232">
          <description><![CDATA[Sets the SMTP HELO of the message (Default is $Hostname).]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="232" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="242" namespace="global" package="Default">
        <name>$SMTPSecure</name>
        <default><![CDATA['']]></default>
        <docblock line="238">
          <description><![CDATA[Sets connection prefix.]]></description>
          <long-description><![CDATA[<p>Options are "", "ssl" or "tls"</p>]]></long-description>
          <tag line="238" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="248" namespace="global" package="Default">
        <name>$SMTPAuth</name>
        <default><![CDATA[false]]></default>
        <docblock line="244">
          <description><![CDATA[Sets SMTP authentication.]]></description>
          <long-description><![CDATA[<p>Utilizes the Username and Password variables.</p>]]></long-description>
          <tag line="244" name="var" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="254" namespace="global" package="Default">
        <name>$Username</name>
        <default><![CDATA['']]></default>
        <docblock line="250">
          <description><![CDATA[Sets SMTP username.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="250" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="260" namespace="global" package="Default">
        <name>$Password</name>
        <default><![CDATA['']]></default>
        <docblock line="256">
          <description><![CDATA[Sets SMTP password.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="256" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="266" namespace="global" package="Default">
        <name>$AuthType</name>
        <default><![CDATA['']]></default>
        <docblock line="262">
          <description><![CDATA[Sets SMTP auth type.]]></description>
          <long-description><![CDATA[<p>Options are LOGIN | PLAIN | NTLM  (default LOGIN)</p>]]></long-description>
          <tag line="262" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="272" namespace="global" package="Default">
        <name>$Realm</name>
        <default><![CDATA['']]></default>
        <docblock line="268">
          <description><![CDATA[Sets SMTP realm.]]></description>
          <long-description><![CDATA[<p>@var string</p>]]></long-description>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="278" namespace="global" package="Default">
        <name>$Workstation</name>
        <default><![CDATA['']]></default>
        <docblock line="274">
          <description><![CDATA[Sets SMTP workstation.]]></description>
          <long-description><![CDATA[<p>@var string</p>]]></long-description>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="285" namespace="global" package="Default">
        <name>$Timeout</name>
        <default><![CDATA[10]]></default>
        <docblock line="280">
          <description><![CDATA[Sets the SMTP server timeout in seconds.]]></description>
          <long-description><![CDATA[<p>This function will not work with the win32 version.</p>]]></long-description>
          <tag line="280" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="291" namespace="global" package="Default">
        <name>$SMTPDebug</name>
        <default><![CDATA[false]]></default>
        <docblock line="287">
          <description><![CDATA[Sets SMTP class debugging on or off.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="287" name="var" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="298" namespace="global" package="Default">
        <name>$Debugoutput</name>
        <default><![CDATA["echo"]]></default>
        <docblock line="293">
          <description><![CDATA[Sets the function/method to use for debugging output.]]></description>
          <long-description><![CDATA[<p>Right now we only honor "echo" or "error_log"</p>]]></long-description>
          <tag line="293" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="306" namespace="global" package="Default">
        <name>$SMTPKeepAlive</name>
        <default><![CDATA[false]]></default>
        <docblock line="300">
          <description><![CDATA[Prevents the SMTP connection from being closed after each mail
sending.]]></description>
          <long-description><![CDATA[<p>If this is set to true then to close the connection
requires an explicit call to SmtpClose().</p>]]></long-description>
          <tag line="300" name="var" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="313" namespace="global" package="Default">
        <name>$SingleTo</name>
        <default><![CDATA[false]]></default>
        <docblock line="308">
          <description><![CDATA[Provides the ability to have the TO field process individual
emails, instead of sending to entire TO addresses]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="308" name="var" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="319" namespace="global" package="Default">
        <name>$SingleToArray</name>
        <default><![CDATA[array()]]></default>
        <docblock line="315">
          <description><![CDATA[If SingleTo is true, this provides the array to hold the email addresses]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="315" name="var" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="327" namespace="global" package="Default">
        <name>$LE</name>
        <default><![CDATA["\n"]]></default>
        <docblock line="321">
          <description><![CDATA[Provides the ability to change the generic line ending
NOTE: The default remains '\n'.]]></description>
          <long-description><![CDATA[<p>We force CRLF where we KNOW
       it must be used via self::CRLF</p>]]></long-description>
          <tag line="321" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="336" namespace="global" package="Default">
        <name>$DKIM_selector</name>
        <default><![CDATA['']]></default>
        <docblock line="329">
          <description><![CDATA[Used with DKIM Signing
required parameter if DKIM is enabled]]></description>
          <long-description><![CDATA[<p>domain selector example domainkey</p>]]></long-description>
          <tag line="329" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="343" namespace="global" package="Default">
        <name>$DKIM_identity</name>
        <default><![CDATA['']]></default>
        <docblock line="338">
          <description><![CDATA[Used with DKIM Signing
required if DKIM is enabled, in format of email address 'you@yourdomain.com' typically used as the source of the email]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="338" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="350" namespace="global" package="Default">
        <name>$DKIM_passphrase</name>
        <default><![CDATA['']]></default>
        <docblock line="345">
          <description><![CDATA[Used with DKIM Signing
optional parameter if your private key requires a passphras]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="345" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="357" namespace="global" package="Default">
        <name>$DKIM_domain</name>
        <default><![CDATA['']]></default>
        <docblock line="352">
          <description><![CDATA[Used with DKIM Singing
required if DKIM is enabled, in format of email address 'domain.com']]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="352" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="364" namespace="global" package="Default">
        <name>$DKIM_private</name>
        <default><![CDATA['']]></default>
        <docblock line="359">
          <description><![CDATA[Used with DKIM Signing
required if DKIM is enabled, path to private key file]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="359" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="387" namespace="global" package="Default">
        <name>$action_function</name>
        <default><![CDATA['']]></default>
        <docblock line="366">
          <description><![CDATA[Callback Action function name.]]></description>
          <long-description><![CDATA[<p>The function that handles the result of the send email action.
It is called out by Send() for each email sent.</p>

<p>Value can be:
- 'function_name' for function names
- 'Class::Method' for static method calls
- array($object, 'Method') for calling methods on $object
See http://php.net/is_callable manual page for more details.</p>

<p>Parameters:
  bool    $result        result of the send action
  string  $to            email address of the recipient
  string  $cc            cc email addresses
  string  $bcc           bcc email addresses
  string  $subject       the subject
  string  $body          the email body
  string  $from          email address of sender</p>]]></long-description>
          <tag line="366" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="393" namespace="global" package="Default">
        <name>$Version</name>
        <default><![CDATA['5.2.2']]></default>
        <docblock line="389">
          <description><![CDATA[Sets the PHPMailer Version number]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="389" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="399" namespace="global" package="Default">
        <name>$XMailer</name>
        <default><![CDATA['']]></default>
        <docblock line="395">
          <description><![CDATA[What to use in the X-Mailer header]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="395" name="var" description="NULL for default, whitespace for None, or actual string to use" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="409" namespace="global" package="Default">
        <name>$smtp</name>
        <default><![CDATA[null]]></default>
        <docblock line="405">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="405" name="var" description="An instance of the SMTP sender class" type="\SMTP">
            <type by_reference="false">\SMTP</type>
          </tag>
          <tag line="405" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="414" namespace="global" package="Default">
        <name>$to</name>
        <default><![CDATA[array()]]></default>
        <docblock line="410">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="410" name="var" description="An array of 'to' addresses" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="410" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="419" namespace="global" package="Default">
        <name>$cc</name>
        <default><![CDATA[array()]]></default>
        <docblock line="415">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="415" name="var" description="An array of 'cc' addresses" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="415" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="424" namespace="global" package="Default">
        <name>$bcc</name>
        <default><![CDATA[array()]]></default>
        <docblock line="420">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="420" name="var" description="An array of 'bcc' addresses" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="420" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="429" namespace="global" package="Default">
        <name>$ReplyTo</name>
        <default><![CDATA[array()]]></default>
        <docblock line="425">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="425" name="var" description="An array of reply-to name and address" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="425" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="434" namespace="global" package="Default">
        <name>$all_recipients</name>
        <default><![CDATA[array()]]></default>
        <docblock line="430">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="430" name="var" description="An array of all kinds of addresses: to, cc, bcc, replyto" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="430" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="439" namespace="global" package="Default">
        <name>$attachment</name>
        <default><![CDATA[array()]]></default>
        <docblock line="435">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="435" name="var" description="An array of attachments" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="435" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="444" namespace="global" package="Default">
        <name>$CustomHeader</name>
        <default><![CDATA[array()]]></default>
        <docblock line="440">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="440" name="var" description="An array of custom headers" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="440" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="449" namespace="global" package="Default">
        <name>$message_type</name>
        <default><![CDATA['']]></default>
        <docblock line="445">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="445" name="var" description="The message's MIME type" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="445" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="454" namespace="global" package="Default">
        <name>$boundary</name>
        <default><![CDATA[array()]]></default>
        <docblock line="450">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="450" name="var" description="An array of MIME boundary strings" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="450" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="459" namespace="global" package="Default">
        <name>$language</name>
        <default><![CDATA[array()]]></default>
        <docblock line="455">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="455" name="var" description="An array of available languages" type="array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="455" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="464" namespace="global" package="Default">
        <name>$error_count</name>
        <default><![CDATA[0]]></default>
        <docblock line="460">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="460" name="var" description="The number of errors encountered" type="integer">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="460" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="469" namespace="global" package="Default">
        <name>$sign_cert_file</name>
        <default><![CDATA['']]></default>
        <docblock line="465">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="465" name="var" description="The filename of a DKIM certificate file" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="465" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="474" namespace="global" package="Default">
        <name>$sign_key_file</name>
        <default><![CDATA['']]></default>
        <docblock line="470">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="470" name="var" description="The filename of a DKIM key file" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="470" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="479" namespace="global" package="Default">
        <name>$sign_key_pass</name>
        <default><![CDATA['']]></default>
        <docblock line="475">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="475" name="var" description="The password of a DKIM key" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="475" name="access" description="protected"/>
        </docblock>
      </property>
      <property final="false" static="false" visibility="protected" line="484" namespace="global" package="Default">
        <name>$exceptions</name>
        <default><![CDATA[false]]></default>
        <docblock line="480">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="480" name="var" description="Whether to throw exceptions for errors" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="480" name="access" description="protected"/>
        </docblock>
      </property>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="512" package="PHPMailer">
        <name>mail_passthru</name>
        <full_name>mail_passthru</full_name>
        <docblock line="499">
          <description><![CDATA[Calls actual mail() function, but in a safe_mode aware fashion
Also, unless sendmail_path points to sendmail (or something that
claims to be sendmail), don't pass params (not a perfect fix,
but it will do)]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="499" name="param" description="To" type="string" variable="$to">
            <type by_reference="false">string</type>
          </tag>
          <tag line="499" name="param" description="Subject" type="string" variable="$subject">
            <type by_reference="false">string</type>
          </tag>
          <tag line="499" name="param" description="Message Body" type="string" variable="$body">
            <type by_reference="false">string</type>
          </tag>
          <tag line="499" name="param" description="Additional Header(s)" type="string" variable="$header">
            <type by_reference="false">string</type>
          </tag>
          <tag line="499" name="param" description="Params" type="string" variable="$params">
            <type by_reference="false">string</type>
          </tag>
          <tag line="499" name="access" description="private"/>
          <tag line="499" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="512">
          <name>$to</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="512">
          <name>$subject</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="512">
          <name>$body</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="512">
          <name>$header</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="512">
          <name>$params</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="525" package="PHPMailer">
        <name>edebug</name>
        <full_name>edebug</full_name>
        <docblock line="521">
          <description><![CDATA[Outputs debugging info via user-defined method]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="521" name="param" description="" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="525">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="537" package="PHPMailer">
        <name>__construct</name>
        <full_name>__construct</full_name>
        <docblock line="533">
          <description><![CDATA[Constructor]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="533" name="param" description="Should we throw external exceptions?" type="boolean" variable="$exceptions">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="537">
          <name>$exceptions</name>
          <default><![CDATA[false]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="546" package="PHPMailer">
        <name>IsHTML</name>
        <full_name>IsHTML</full_name>
        <docblock line="541">
          <description><![CDATA[Sets message type to HTML.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="541" name="param" description="" type="bool" variable="$ishtml">
            <type by_reference="false">bool</type>
          </tag>
          <tag line="541" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="546">
          <name>$ishtml</name>
          <default><![CDATA[true]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="559" package="PHPMailer">
        <name>IsSMTP</name>
        <full_name>IsSMTP</full_name>
        <docblock line="554">
          <description><![CDATA[Sets Mailer to send message using SMTP.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="554" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
          <tag line="554" name="deprecated" description=""/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="568" package="PHPMailer">
        <name>IsMail</name>
        <full_name>IsMail</full_name>
        <docblock line="563">
          <description><![CDATA[Sets Mailer to send message using PHP mail() function.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="563" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
          <tag line="563" name="deprecated" description=""/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="577" package="PHPMailer">
        <name>IsSendmail</name>
        <full_name>IsSendmail</full_name>
        <docblock line="572">
          <description><![CDATA[Sets Mailer to send message using the $Sendmail program.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="572" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
          <tag line="572" name="deprecated" description=""/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="589" package="PHPMailer">
        <name>IsQmail</name>
        <full_name>IsQmail</full_name>
        <docblock line="584">
          <description><![CDATA[Sets Mailer to send message using the qmail MTA.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="584" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
          <tag line="584" name="deprecated" description=""/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="606" package="PHPMailer">
        <name>AddAddress</name>
        <full_name>AddAddress</full_name>
        <docblock line="600">
          <description><![CDATA[Adds a "To" address.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="600" name="param" description="" type="string" variable="$address">
            <type by_reference="false">string</type>
          </tag>
          <tag line="600" name="param" description="" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="600" name="return" description="true on success, false if address already used" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="606">
          <name>$address</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="606">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="617" package="PHPMailer">
        <name>AddCC</name>
        <full_name>AddCC</full_name>
        <docblock line="610">
          <description><![CDATA[Adds a "Cc" address.]]></description>
          <long-description><![CDATA[<p>Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.</p>]]></long-description>
          <tag line="610" name="param" description="" type="string" variable="$address">
            <type by_reference="false">string</type>
          </tag>
          <tag line="610" name="param" description="" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="610" name="return" description="true on success, false if address already used" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="617">
          <name>$address</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="617">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="628" package="PHPMailer">
        <name>AddBCC</name>
        <full_name>AddBCC</full_name>
        <docblock line="621">
          <description><![CDATA[Adds a "Bcc" address.]]></description>
          <long-description><![CDATA[<p>Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.</p>]]></long-description>
          <tag line="621" name="param" description="" type="string" variable="$address">
            <type by_reference="false">string</type>
          </tag>
          <tag line="621" name="param" description="" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="621" name="return" description="true on success, false if address already used" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="628">
          <name>$address</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="628">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="638" package="PHPMailer">
        <name>AddReplyTo</name>
        <full_name>AddReplyTo</full_name>
        <docblock line="632">
          <description><![CDATA[Adds a "Reply-to" address.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="632" name="param" description="" type="string" variable="$address">
            <type by_reference="false">string</type>
          </tag>
          <tag line="632" name="param" description="" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="632" name="return" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="638">
          <name>$address</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="638">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="652" package="PHPMailer">
        <name>AddAnAddress</name>
        <full_name>AddAnAddress</full_name>
        <docblock line="642">
          <description><![CDATA[Adds an address to one of the recipient arrays
Addresses that have been added already return false, but do not throw exceptions]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="642" name="param" description="One of 'to', 'cc', 'bcc', 'ReplyTo'" type="string" variable="$kind">
            <type by_reference="false">string</type>
          </tag>
          <tag line="642" name="param" description="The email address to send to" type="string" variable="$address">
            <type by_reference="false">string</type>
          </tag>
          <tag line="642" name="param" description="" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="642" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="642" name="return" description="true on success, false if address already used or invalid in some way" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="642" name="access" description="protected"/>
        </docblock>
        <argument line="652">
          <name>$kind</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="652">
          <name>$address</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="652">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="698" package="PHPMailer">
        <name>SetFrom</name>
        <full_name>SetFrom</full_name>
        <docblock line="690">
          <description><![CDATA[Set the From and FromName properties]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="690" name="param" description="" type="string" variable="$address">
            <type by_reference="false">string</type>
          </tag>
          <tag line="690" name="param" description="" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="690" name="param" description="Also set Reply-To and Sender" type="int" variable="$auto">
            <type by_reference="false">int</type>
          </tag>
          <tag line="690" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="690" name="return" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="698">
          <name>$address</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="698">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
        <argument line="698">
          <name>$auto</name>
          <default><![CDATA[1]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="737" package="PHPMailer">
        <name>ValidateAddress</name>
        <full_name>ValidateAddress</full_name>
        <docblock line="724">
          <description><![CDATA[Check that a string looks roughly like an email address should
Static so it can be used without instantiation, public so people can overload
Conforms to RFC5322: Uses *correct* regex on which FILTER_VALIDATE_EMAIL is
based; So why not use FILTER_VALIDATE_EMAIL? Because it was broken to
not allow a@b type valid addresses :(]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="724" name="link" description="http://squiloople.com/2009/12/20/email-address-validation/" link="http://squiloople.com/2009/12/20/email-address-validation/"/>
          <tag line="724" name="copyright" description="regex Copyright Michael Rushton 2009-10 | http://squiloople.com/ | Feel free to use and redistribute this code. But please keep this copyright notice."/>
          <tag line="724" name="param" description="The email address to check" type="string" variable="$address">
            <type by_reference="false">string</type>
          </tag>
          <tag line="724" name="return" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="724" name="static" description=""/>
          <tag line="724" name="access" description="public"/>
        </docblock>
        <argument line="737">
          <name>$address</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="752" package="PHPMailer">
        <name>Send</name>
        <full_name>Send</full_name>
        <docblock line="745">
          <description><![CDATA[Creates message and assigns Mailer.]]></description>
          <long-description><![CDATA[<p>If the message is
not sent successfully then it returns false.  Use the ErrorInfo
variable to view description of the error.</p>]]></long-description>
          <tag line="745" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="745" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="771" package="PHPMailer">
        <name>PreSend</name>
        <full_name>PreSend</full_name>
        <docblock line="766">
          <description><![CDATA[Prep mail by constructing all message entities]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="766" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="766" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="830" package="PHPMailer">
        <name>PostSend</name>
        <full_name>PostSend</full_name>
        <docblock line="824">
          <description><![CDATA[Actual Email transport function
Send the email via the selected mechanism]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="824" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="824" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="863" package="PHPMailer">
        <name>SendmailSend</name>
        <full_name>SendmailSend</full_name>
        <docblock line="855">
          <description><![CDATA[Sends mail using the $Sendmail program.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="855" name="param" description="The message headers" type="string" variable="$header">
            <type by_reference="false">string</type>
          </tag>
          <tag line="855" name="param" description="The message body" type="string" variable="$body">
            <type by_reference="false">string</type>
          </tag>
          <tag line="855" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="855" name="access" description="protected"/>
          <tag line="855" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="863">
          <name>$header</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="863">
          <name>$body</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="910" package="PHPMailer">
        <name>MailSend</name>
        <full_name>MailSend</full_name>
        <docblock line="902">
          <description><![CDATA[Sends mail using the PHP mail() function.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="902" name="param" description="The message headers" type="string" variable="$header">
            <type by_reference="false">string</type>
          </tag>
          <tag line="902" name="param" description="The message body" type="string" variable="$body">
            <type by_reference="false">string</type>
          </tag>
          <tag line="902" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="902" name="access" description="protected"/>
          <tag line="902" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="910">
          <name>$header</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="910">
          <name>$body</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="959" package="PHPMailer">
        <name>SmtpSend</name>
        <full_name>SmtpSend</full_name>
        <docblock line="949">
          <description><![CDATA[Sends mail via SMTP using PhpSMTP
Returns false if there is a bad MAIL FROM, RCPT, or DATA input.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="949" name="param" description="The message headers" type="string" variable="$header">
            <type by_reference="false">string</type>
          </tag>
          <tag line="949" name="param" description="The message body" type="string" variable="$body">
            <type by_reference="false">string</type>
          </tag>
          <tag line="949" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="949" name="uses" description="\global\SMTP" refers="\global\SMTP"/>
          <tag line="949" name="access" description="protected"/>
          <tag line="949" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="959">
          <name>$header</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="959">
          <name>$body</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1034" package="PHPMailer">
        <name>SmtpConnect</name>
        <full_name>SmtpConnect</full_name>
        <docblock line="1026">
          <description><![CDATA[Initiates a connection to an SMTP server.]]></description>
          <long-description><![CDATA[<p>Returns false if the operation failed.</p>]]></long-description>
          <tag line="1026" name="uses" description="\global\SMTP" refers="\global\SMTP"/>
          <tag line="1026" name="access" description="public"/>
          <tag line="1026" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="1026" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1100" package="PHPMailer">
        <name>SmtpClose</name>
        <full_name>SmtpClose</full_name>
        <docblock line="1096">
          <description><![CDATA[Closes the active SMTP session if one exists.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1096" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1117" package="PHPMailer">
        <name>SetLanguage</name>
        <full_name>SetLanguage</full_name>
        <docblock line="1109">
          <description><![CDATA[Sets the language for all class error messages.]]></description>
          <long-description><![CDATA[<p>Returns false if it cannot load the language file.  The default language is English.</p>]]></long-description>
          <tag line="1109" name="param" description="ISO 639-1 2-character language code (e.g. Portuguese: &quot;br&quot;)" type="string" variable="$langcode">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1109" name="param" description="Path to the language file directory" type="string" variable="$lang_path">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1109" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
          <tag line="1109" name="access" description="public"/>
        </docblock>
        <argument line="1117">
          <name>$langcode</name>
          <default><![CDATA['en']]></default>
          <type/>
        </argument>
        <argument line="1117">
          <name>$lang_path</name>
          <default><![CDATA['language/']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1152" package="PHPMailer">
        <name>GetTranslations</name>
        <full_name>GetTranslations</full_name>
        <docblock line="1148">
          <description><![CDATA[Return the current array of language strings]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1148" name="return" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1167" package="PHPMailer">
        <name>AddrAppend</name>
        <full_name>AddrAppend</full_name>
        <docblock line="1160">
          <description><![CDATA[Creates recipient headers.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1160" name="access" description="public"/>
          <tag line="1160" name="param" description="" type="string" variable="$type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1160" name="param" description="" type="array" variable="$addr">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1160" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1167">
          <name>$type</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1167">
          <name>$addr</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1185" package="PHPMailer">
        <name>AddrFormat</name>
        <full_name>AddrFormat</full_name>
        <docblock line="1179">
          <description><![CDATA[Formats an address correctly.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1179" name="access" description="public"/>
          <tag line="1179" name="param" description="" type="string" variable="$addr">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1179" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1185">
          <name>$addr</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1203" package="PHPMailer">
        <name>WrapText</name>
        <full_name>WrapText</full_name>
        <docblock line="1193">
          <description><![CDATA[Wraps message for use with mailers that do not
automatically perform wrapping and for quoted-printable.]]></description>
          <long-description><![CDATA[<p>Original written by philippe.</p>]]></long-description>
          <tag line="1193" name="param" description="The message to wrap" type="string" variable="$message">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1193" name="param" description="The line length to wrap to" type="integer" variable="$length">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="1193" name="param" description="Whether to run in Quoted-Printable mode" type="boolean" variable="$qp_mode">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="1193" name="access" description="public"/>
          <tag line="1193" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1203">
          <name>$message</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1203">
          <name>$length</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1203">
          <name>$qp_mode</name>
          <default><![CDATA[false]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1287" package="PHPMailer">
        <name>UTF8CharBoundary</name>
        <full_name>UTF8CharBoundary</full_name>
        <docblock line="1278">
          <description><![CDATA[Finds last character boundary prior to maxLength in a utf-8
quoted (printable) encoded string.]]></description>
          <long-description><![CDATA[<p>Original written by Colin Brown.</p>]]></long-description>
          <tag line="1278" name="access" description="public"/>
          <tag line="1278" name="param" description="utf-8 QP text" type="string" variable="$encodedText">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1278" name="param" description="find last character boundary prior to this length" type="int" variable="$maxLength">
            <type by_reference="false">int</type>
          </tag>
          <tag line="1278" name="return" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
        <argument line="1287">
          <name>$encodedText</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1287">
          <name>$maxLength</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1325" package="PHPMailer">
        <name>SetWordWrap</name>
        <full_name>SetWordWrap</full_name>
        <docblock line="1320">
          <description><![CDATA[Set the body wrapping.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1320" name="access" description="public"/>
          <tag line="1320" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1348" package="PHPMailer">
        <name>CreateHeader</name>
        <full_name>CreateHeader</full_name>
        <docblock line="1343">
          <description><![CDATA[Assembles message header.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1343" name="access" description="public"/>
          <tag line="1343" name="return" description="The assembled header" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1446" package="PHPMailer">
        <name>GetMailMIME</name>
        <full_name>GetMailMIME</full_name>
        <docblock line="1441">
          <description><![CDATA[Returns the message MIME.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1441" name="access" description="public"/>
          <tag line="1441" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1484" package="PHPMailer">
        <name>GetSentMIMEMessage</name>
        <full_name>GetSentMIMEMessage</full_name>
        <docblock line="1479">
          <description><![CDATA[Returns the MIME message (headers and body).]]></description>
          <long-description><![CDATA[<p>Only really valid post PreSend().</p>]]></long-description>
          <tag line="1479" name="access" description="public"/>
          <tag line="1479" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1495" package="PHPMailer">
        <name>CreateBody</name>
        <full_name>CreateBody</full_name>
        <docblock line="1489">
          <description><![CDATA[Assembles the message body.]]></description>
          <long-description><![CDATA[<p>Returns an empty string on failure.</p>]]></long-description>
          <tag line="1489" name="access" description="public"/>
          <tag line="1489" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="1489" name="return" description="The assembled message body" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="1631" package="PHPMailer">
        <name>GetBoundary</name>
        <full_name>GetBoundary</full_name>
        <docblock line="1622">
          <description><![CDATA[Returns the start of a message boundary.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1622" name="access" description="protected"/>
          <tag line="1622" name="param" description="" type="string" variable="$boundary">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1622" name="param" description="" type="string" variable="$charSet">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1622" name="param" description="" type="string" variable="$contentType">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1622" name="param" description="" type="string" variable="$encoding">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1622" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1631">
          <name>$boundary</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1631">
          <name>$charSet</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1631">
          <name>$contentType</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1631">
          <name>$encoding</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="1657" package="PHPMailer">
        <name>EndBoundary</name>
        <full_name>EndBoundary</full_name>
        <docblock line="1651">
          <description><![CDATA[Returns the end of a message boundary.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1651" name="access" description="protected"/>
          <tag line="1651" name="param" description="" type="string" variable="$boundary">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1651" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1657">
          <name>$boundary</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="1666" package="PHPMailer">
        <name>SetMessageType</name>
        <full_name>SetMessageType</full_name>
        <docblock line="1661">
          <description><![CDATA[Sets the message type.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1661" name="access" description="protected"/>
          <tag line="1661" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1682" package="PHPMailer">
        <name>HeaderLine</name>
        <full_name>HeaderLine</full_name>
        <docblock line="1675">
          <description><![CDATA[Returns a formatted header line.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1675" name="access" description="public"/>
          <tag line="1675" name="param" description="" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1675" name="param" description="" type="string" variable="$value">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1675" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1682">
          <name>$name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1682">
          <name>$value</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1692" package="PHPMailer">
        <name>TextLine</name>
        <full_name>TextLine</full_name>
        <docblock line="1686">
          <description><![CDATA[Returns a formatted mail line.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1686" name="access" description="public"/>
          <tag line="1686" name="param" description="" type="string" variable="$value">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1686" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1692">
          <name>$value</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1711" package="PHPMailer">
        <name>AddAttachment</name>
        <full_name>AddAttachment</full_name>
        <docblock line="1700">
          <description><![CDATA[Adds an attachment from a path on the filesystem.]]></description>
          <long-description><![CDATA[<p>Returns false if the file could not be found
or accessed.</p>]]></long-description>
          <tag line="1700" name="param" description="Path to the attachment." type="string" variable="$path">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1700" name="param" description="Overrides the attachment name." type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1700" name="param" description="File encoding (see $Encoding)." type="string" variable="$encoding">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1700" name="param" description="File extension (MIME) type." type="string" variable="$type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1700" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="1700" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="1711">
          <name>$path</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1711">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
        <argument line="1711">
          <name>$encoding</name>
          <default><![CDATA['base64']]></default>
          <type/>
        </argument>
        <argument line="1711">
          <name>$type</name>
          <default><![CDATA['application/octet-stream']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1751" package="PHPMailer">
        <name>GetAttachments</name>
        <full_name>GetAttachments</full_name>
        <docblock line="1747">
          <description><![CDATA[Return the current array of attachments]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1747" name="return" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="1763" package="PHPMailer">
        <name>AttachAll</name>
        <full_name>AttachAll</full_name>
        <docblock line="1755">
          <description><![CDATA[Attaches all fs, string, and binary attachments to the message.]]></description>
          <long-description><![CDATA[<p>Returns an empty string on failure.</p>]]></long-description>
          <tag line="1755" name="access" description="protected"/>
          <tag line="1755" name="param" description="" type="string" variable="$disposition_type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1755" name="param" description="" type="string" variable="$boundary">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1755" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1763">
          <name>$disposition_type</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1763">
          <name>$boundary</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="1837" package="PHPMailer">
        <name>EncodeFile</name>
        <full_name>EncodeFile</full_name>
        <docblock line="1827">
          <description><![CDATA[Encodes attachment in requested format.]]></description>
          <long-description><![CDATA[<p>Returns an empty string on failure.</p>]]></long-description>
          <tag line="1827" name="param" description="The full path to the file" type="string" variable="$path">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1827" name="param" description="The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'" type="string" variable="$encoding">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1827" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="1827" name="see" description="\global\EncodeFile()" refers="\global\EncodeFile()"/>
          <tag line="1827" name="access" description="protected"/>
          <tag line="1827" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1837">
          <name>$path</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1837">
          <name>$encoding</name>
          <default><![CDATA['base64']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1879" package="PHPMailer">
        <name>EncodeString</name>
        <full_name>EncodeString</full_name>
        <docblock line="1871">
          <description><![CDATA[Encodes string to requested format.]]></description>
          <long-description><![CDATA[<p>Returns an empty string on failure.</p>]]></long-description>
          <tag line="1871" name="param" description="The text to encode" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1871" name="param" description="The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'" type="string" variable="$encoding">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1871" name="access" description="public"/>
          <tag line="1871" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1879">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1879">
          <name>$encoding</name>
          <default><![CDATA['base64']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1912" package="PHPMailer">
        <name>EncodeHeader</name>
        <full_name>EncodeHeader</full_name>
        <docblock line="1905">
          <description><![CDATA[Encode a header string to best (shortest) of Q, B, quoted or none.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1905" name="access" description="public"/>
          <tag line="1905" name="param" description="" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1905" name="param" description="" type="string" variable="$position">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1905" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1912">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1912">
          <name>$position</name>
          <default><![CDATA['text']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1973" package="PHPMailer">
        <name>HasMultiBytes</name>
        <full_name>HasMultiBytes</full_name>
        <docblock line="1967">
          <description><![CDATA[Checks if a string contains multibyte characters.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1967" name="access" description="public"/>
          <tag line="1967" name="param" description="multi-byte text to wrap encode" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1967" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="1973">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1990" package="PHPMailer">
        <name>Base64EncodeWrapMB</name>
        <full_name>Base64EncodeWrapMB</full_name>
        <docblock line="1981">
          <description><![CDATA[Correctly encodes and wraps long multibyte strings for mail headers
without breaking lines within a character.]]></description>
          <long-description><![CDATA[<p>Adapted from a function by paravoid at http://uk.php.net/manual/en/function.mb-encode-mimeheader.php</p>]]></long-description>
          <tag line="1981" name="access" description="public"/>
          <tag line="1981" name="param" description="multi-byte text to wrap encode" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1981" name="param" description="string to use as linefeed/end-of-line" type="string" variable="$lf">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1981" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="1990">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1990">
          <name>$lf</name>
          <default><![CDATA[null]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2035" package="PHPMailer">
        <name>EncodeQPphp</name>
        <full_name>EncodeQPphp</full_name>
        <docblock line="2025">
          <description><![CDATA[Encode string to quoted-printable.]]></description>
          <long-description><![CDATA[<p>Only uses standard PHP, slow, but will always work</p>]]></long-description>
          <tag line="2025" name="access" description="public"/>
          <tag line="2025" name="param" description="" type="string" variable="$input">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2025" name="param" description="Number of chars allowed on a line before wrapping" type="integer" variable="$line_max">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="2025" name="param" description="" type="bool" variable="$space_conv">
            <type by_reference="false">bool</type>
          </tag>
          <tag line="2025" name="internal" description="param string $string the text to encode"/>
          <tag line="2025" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2035">
          <name>$input</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
        <argument line="2035">
          <name>$line_max</name>
          <default><![CDATA[76]]></default>
          <type/>
        </argument>
        <argument line="2035">
          <name>$space_conv</name>
          <default><![CDATA[false]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2088" package="PHPMailer">
        <name>EncodeQP</name>
        <full_name>EncodeQP</full_name>
        <docblock line="2076">
          <description><![CDATA[Encode string to RFC2045 (6.7) quoted-printable format
Uses a PHP5 stream filter to do the encoding about 64x faster than the old version
Also results in same content as you started with after decoding]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2076" name="see" description="\global\EncodeQPphp()" refers="\global\EncodeQPphp()"/>
          <tag line="2076" name="access" description="public"/>
          <tag line="2076" name="param" description="the text to encode" type="string" variable="$string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2076" name="param" description="Number of chars allowed on a line before wrapping" type="integer" variable="$line_max">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="2076" name="param" description="Dummy param for compatibility with existing EncodeQP function" type="boolean" variable="$space_conv">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="2076" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2076" name="author" description="Marcus Bointon"/>
        </docblock>
        <argument line="2088">
          <name>$string</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2088">
          <name>$line_max</name>
          <default><![CDATA[76]]></default>
          <type/>
        </argument>
        <argument line="2088">
          <name>$space_conv</name>
          <default><![CDATA[false]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2117" package="PHPMailer">
        <name>EncodeQ</name>
        <full_name>EncodeQ</full_name>
        <docblock line="2109">
          <description><![CDATA[Encode string to q encoding.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2109" name="link" description="http://tools.ietf.org/html/rfc2047" link="http://tools.ietf.org/html/rfc2047"/>
          <tag line="2109" name="param" description="the text to encode" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2109" name="param" description="Where the text is going to be used, see the RFC for what that means" type="string" variable="$position">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2109" name="access" description="public"/>
          <tag line="2109" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2117">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2117">
          <name>$position</name>
          <default><![CDATA['text']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2160" package="PHPMailer">
        <name>AddStringAttachment</name>
        <full_name>AddStringAttachment</full_name>
        <docblock line="2150">
          <description><![CDATA[Adds a string or binary attachment (non-filesystem) to the list.]]></description>
          <long-description><![CDATA[<p>This method can be used to attach ascii or binary data,
such as a BLOB record from a database.</p>]]></long-description>
          <tag line="2150" name="param" description="String attachment data." type="string" variable="$string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2150" name="param" description="Name of the attachment." type="string" variable="$filename">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2150" name="param" description="File encoding (see $Encoding)." type="string" variable="$encoding">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2150" name="param" description="File extension (MIME) type." type="string" variable="$type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2150" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="2160">
          <name>$string</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2160">
          <name>$filename</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2160">
          <name>$encoding</name>
          <default><![CDATA['base64']]></default>
          <type/>
        </argument>
        <argument line="2160">
          <name>$type</name>
          <default><![CDATA['application/octet-stream']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2187" package="PHPMailer">
        <name>AddEmbeddedImage</name>
        <full_name>AddEmbeddedImage</full_name>
        <docblock line="2174">
          <description><![CDATA[Adds an embedded attachment.]]></description>
          <long-description><![CDATA[<p>This can include images, sounds, and
just about any other document.  Make sure to set the $type to an
image type.  For JPEG images use "image/jpeg" and for GIF images
use "image/gif".</p>]]></long-description>
          <tag line="2174" name="param" description="Path to the attachment." type="string" variable="$path">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2174" name="param" description="Content ID of the attachment. Use this to identify the Id for accessing the image in an HTML form." type="string" variable="$cid">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2174" name="param" description="Overrides the attachment name." type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2174" name="param" description="File encoding (see $Encoding)." type="string" variable="$encoding">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2174" name="param" description="File extension (MIME) type." type="string" variable="$type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2174" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="2187">
          <name>$path</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2187">
          <name>$cid</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2187">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
        <argument line="2187">
          <name>$encoding</name>
          <default><![CDATA['base64']]></default>
          <type/>
        </argument>
        <argument line="2187">
          <name>$type</name>
          <default><![CDATA['application/octet-stream']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2227" package="PHPMailer">
        <name>AddStringEmbeddedImage</name>
        <full_name>AddStringEmbeddedImage</full_name>
        <docblock line="2214">
          <description><![CDATA[Adds an embedded stringified attachment.]]></description>
          <long-description><![CDATA[<p>This can include images, sounds, and
just about any other document.  Make sure to set the $type to an
image type.  For JPEG images use "image/jpeg" and for GIF images
use "image/gif".</p>]]></long-description>
          <tag line="2214" name="param" description="The attachment." type="string" variable="$string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2214" name="param" description="Content ID of the attachment. Use this to identify the Id for accessing the image in an HTML form." type="string" variable="$cid">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2214" name="param" description="Overrides the attachment name." type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2214" name="param" description="File encoding (see $Encoding)." type="string" variable="$encoding">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2214" name="param" description="File extension (MIME) type." type="string" variable="$type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2214" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="2227">
          <name>$string</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2227">
          <name>$cid</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2227">
          <name>$name</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
        <argument line="2227">
          <name>$encoding</name>
          <default><![CDATA['base64']]></default>
          <type/>
        </argument>
        <argument line="2227">
          <name>$type</name>
          <default><![CDATA['application/octet-stream']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2246" package="PHPMailer">
        <name>InlineImageExists</name>
        <full_name>InlineImageExists</full_name>
        <docblock line="2241">
          <description><![CDATA[Returns true if an inline attachment is present.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2241" name="access" description="public"/>
          <tag line="2241" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2259" package="PHPMailer">
        <name>AttachmentExists</name>
        <full_name>AttachmentExists</full_name>
        <docblock line="2255">
          <description><![CDATA[Returns true if an attachment (non-inline) is present.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2255" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2272" package="PHPMailer">
        <name>AlternativeExists</name>
        <full_name>AlternativeExists</full_name>
        <docblock line="2268">
          <description><![CDATA[Does this message have an alternative body set?]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2268" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2284" package="PHPMailer">
        <name>ClearAddresses</name>
        <full_name>ClearAddresses</full_name>
        <docblock line="2280">
          <description><![CDATA[Clears all recipients assigned in the TO array.]]></description>
          <long-description><![CDATA[<p>Returns void.</p>]]></long-description>
          <tag line="2280" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2295" package="PHPMailer">
        <name>ClearCCs</name>
        <full_name>ClearCCs</full_name>
        <docblock line="2291">
          <description><![CDATA[Clears all recipients assigned in the CC array.]]></description>
          <long-description><![CDATA[<p>Returns void.</p>]]></long-description>
          <tag line="2291" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2306" package="PHPMailer">
        <name>ClearBCCs</name>
        <full_name>ClearBCCs</full_name>
        <docblock line="2302">
          <description><![CDATA[Clears all recipients assigned in the BCC array.]]></description>
          <long-description><![CDATA[<p>Returns void.</p>]]></long-description>
          <tag line="2302" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2317" package="PHPMailer">
        <name>ClearReplyTos</name>
        <full_name>ClearReplyTos</full_name>
        <docblock line="2313">
          <description><![CDATA[Clears all recipients assigned in the ReplyTo array.]]></description>
          <long-description><![CDATA[<p>Returns void.</p>]]></long-description>
          <tag line="2313" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2326" package="PHPMailer">
        <name>ClearAllRecipients</name>
        <full_name>ClearAllRecipients</full_name>
        <docblock line="2321">
          <description><![CDATA[Clears all recipients assigned in the TO, CC and BCC
array.]]></description>
          <long-description><![CDATA[<p>Returns void.</p>]]></long-description>
          <tag line="2321" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2338" package="PHPMailer">
        <name>ClearAttachments</name>
        <full_name>ClearAttachments</full_name>
        <docblock line="2333">
          <description><![CDATA[Clears all previously set filesystem, string, and binary
attachments.]]></description>
          <long-description><![CDATA[<p>Returns void.</p>]]></long-description>
          <tag line="2333" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2346" package="PHPMailer">
        <name>ClearCustomHeaders</name>
        <full_name>ClearCustomHeaders</full_name>
        <docblock line="2342">
          <description><![CDATA[Clears all custom headers.]]></description>
          <long-description><![CDATA[<p>Returns void.</p>]]></long-description>
          <tag line="2342" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="2360" package="PHPMailer">
        <name>SetError</name>
        <full_name>SetError</full_name>
        <docblock line="2354">
          <description><![CDATA[Adds the error message to the error container.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2354" name="access" description="protected"/>
          <tag line="2354" name="param" description="" type="string" variable="$msg">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2354" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="2360">
          <name>$msg</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="2377" package="PHPMailer">
        <name>RFCDate</name>
        <full_name>RFCDate</full_name>
        <docblock line="2371">
          <description><![CDATA[Returns the proper RFC 822 formatted date.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2371" name="access" description="public"/>
          <tag line="2371" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2371" name="static" description=""/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="2392" package="PHPMailer">
        <name>ServerHostname</name>
        <full_name>ServerHostname</full_name>
        <docblock line="2387">
          <description><![CDATA[Returns the server hostname or 'localhost.localdomain' if unknown.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2387" name="access" description="protected"/>
          <tag line="2387" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="2410" package="PHPMailer">
        <name>Lang</name>
        <full_name>Lang</full_name>
        <docblock line="2404">
          <description><![CDATA[Returns a message in the appropriate language.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2404" name="access" description="protected"/>
          <tag line="2404" name="param" description="" type="string" variable="$key">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2404" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2410">
          <name>$key</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2427" package="PHPMailer">
        <name>IsError</name>
        <full_name>IsError</full_name>
        <docblock line="2422">
          <description><![CDATA[Returns true if an error occurred.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2422" name="access" description="public"/>
          <tag line="2422" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2437" package="PHPMailer">
        <name>FixEOL</name>
        <full_name>FixEOL</full_name>
        <docblock line="2431">
          <description><![CDATA[Changes every end of line from CRLF, CR or LF to $this->LE.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2431" name="access" description="public"/>
          <tag line="2431" name="param" description="String to FixEOL" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2431" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2437">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2455" package="PHPMailer">
        <name>AddCustomHeader</name>
        <full_name>AddCustomHeader</full_name>
        <docblock line="2447">
          <description><![CDATA[Adds a custom header.]]></description>
          <long-description><![CDATA[<p>$name value can be overloaded to contain
both header name and value (name:value)</p>]]></long-description>
          <tag line="2447" name="access" description="public"/>
          <tag line="2447" name="param" description="custom header name" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2447" name="param" description="header value" type="string" variable="$value">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2447" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="2455">
          <name>$name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2455">
          <name>$value</name>
          <default><![CDATA[null]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2471" package="PHPMailer">
        <name>MsgHTML</name>
        <full_name>MsgHTML</full_name>
        <docblock line="2464">
          <description><![CDATA[Evaluates the message and returns modifications for inline images and backgrounds]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2464" name="access" description="public"/>
          <tag line="2464" name="param" description="Text to be HTML modified" type="string" variable="$message">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2464" name="param" description="baseline directory for path" type="string" variable="$basedir">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2464" name="return" description="$message" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2471">
          <name>$message</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2471">
          <name>$basedir</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="2514" package="PHPMailer">
        <name>_mime_types</name>
        <full_name>_mime_types</full_name>
        <docblock line="2507">
          <description><![CDATA[Gets the MIME type of the embedded or inline image]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2507" name="param" description="File extension" type="string" variable="$ext">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2507" name="access" description="public"/>
          <tag line="2507" name="return" description="MIME type of ext" type="string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2507" name="static" description=""/>
        </docblock>
        <argument line="2514">
          <name>$ext</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2620" package="PHPMailer">
        <name>set</name>
        <full_name>set</full_name>
        <docblock line="2606">
          <description><![CDATA[Set (or reset) Class Objects (variables)]]></description>
          <long-description><![CDATA[<p>Usage Example:
$page->set('X-Priority', '3');</p>]]></long-description>
          <tag line="2606" name="access" description="public"/>
          <tag line="2606" name="param" description="Parameter Name" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2606" name="param" description="Parameter Value NOTE: will not work with arrays, there are no arrays to set/reset" type="mixed" variable="$value">
            <type by_reference="false">mixed</type>
          </tag>
          <tag line="2606" name="throws" description="" type="\phpmailerException">
            <type by_reference="false">\phpmailerException</type>
          </tag>
          <tag line="2606" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
          <tag line="2606" name="todo" description="Should this not be using __set() magic function?"/>
        </docblock>
        <argument line="2620">
          <name>$name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2620">
          <name>$value</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2642" package="PHPMailer">
        <name>SecureHeader</name>
        <full_name>SecureHeader</full_name>
        <docblock line="2636">
          <description><![CDATA[Strips newlines to prevent header injection.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2636" name="access" description="public"/>
          <tag line="2636" name="param" description="String" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2636" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2642">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2654" package="PHPMailer">
        <name>Sign</name>
        <full_name>Sign</full_name>
        <docblock line="2646">
          <description><![CDATA[Set the private key file and password to sign the message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2646" name="access" description="public"/>
          <tag line="2646" name="param" description="" type="" variable="$cert_filename"/>
          <tag line="2646" name="param" description="Parameter File Name" type="string" variable="$key_filename">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2646" name="param" description="Password for private key" type="string" variable="$key_pass">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2654">
          <name>$cert_filename</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2654">
          <name>$key_filename</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2654">
          <name>$key_pass</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2667" package="PHPMailer">
        <name>DKIM_QP</name>
        <full_name>DKIM_QP</full_name>
        <docblock line="2660">
          <description><![CDATA[Set the private key file and password to sign the message.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2660" name="access" description="public"/>
          <tag line="2660" name="param" description="" type="string" variable="$txt">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2660" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2667">
          <name>$txt</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2687" package="PHPMailer">
        <name>DKIM_Sign</name>
        <full_name>DKIM_Sign</full_name>
        <docblock line="2680">
          <description><![CDATA[Generate DKIM signature]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2680" name="access" description="public"/>
          <tag line="2680" name="param" description="Header" type="string" variable="$s">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2680" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2687">
          <name>$s</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2707" package="PHPMailer">
        <name>DKIM_HeaderC</name>
        <full_name>DKIM_HeaderC</full_name>
        <docblock line="2700">
          <description><![CDATA[Generate DKIM Canonicalization Header]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2700" name="access" description="public"/>
          <tag line="2700" name="param" description="Header" type="string" variable="$s">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2700" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2707">
          <name>$s</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2727" package="PHPMailer">
        <name>DKIM_BodyC</name>
        <full_name>DKIM_BodyC</full_name>
        <docblock line="2720">
          <description><![CDATA[Generate DKIM Canonicalization Body]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2720" name="access" description="public"/>
          <tag line="2720" name="param" description="Message Body" type="string" variable="$body">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2720" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2727">
          <name>$body</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2748" package="PHPMailer">
        <name>DKIM_Add</name>
        <full_name>DKIM_Add</full_name>
        <docblock line="2739">
          <description><![CDATA[Create the DKIM header, body, as new header]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2739" name="access" description="public"/>
          <tag line="2739" name="param" description="Header lines" type="string" variable="$headers_line">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2739" name="param" description="Subject" type="string" variable="$subject">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2739" name="param" description="Body" type="string" variable="$body">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2739" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2748">
          <name>$headers_line</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2748">
          <name>$subject</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2748">
          <name>$body</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="protected" namespace="global" line="2795" package="PHPMailer">
        <name>doCallback</name>
        <full_name>doCallback</full_name>
        <docblock line="2785">
          <description><![CDATA[Perform callback]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2785" name="param" description="" type="boolean" variable="$isSent">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="2785" name="param" description="" type="string" variable="$to">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2785" name="param" description="" type="string" variable="$cc">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2785" name="param" description="" type="string" variable="$bcc">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2785" name="param" description="" type="string" variable="$subject">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2785" name="param" description="" type="string" variable="$body">
            <type by_reference="false">string</type>
          </tag>
          <tag line="2785" name="param" description="" type="string" variable="$from">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="2795">
          <name>$isSent</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2795">
          <name>$to</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2795">
          <name>$cc</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2795">
          <name>$bcc</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2795">
          <name>$subject</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2795">
          <name>$body</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="2795">
          <name>$from</name>
          <default><![CDATA[null]]></default>
          <type/>
        </argument>
      </method>
    </class>
    <class final="false" abstract="false" namespace="global" line="2807" package="PHPMailer">
      <extends>\Exception</extends>
      <name>phpmailerException</name>
      <full_name>\phpmailerException</full_name>
      <docblock line="2803">
        <description><![CDATA[Exception handler for PHPMailer]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="2803" name="package" description="PHPMailer"/>
      </docblock>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="2812" package="PHPMailer">
        <name>errorMessage</name>
        <full_name>errorMessage</full_name>
        <docblock line="2808">
          <description><![CDATA[Prettify error message output]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="2808" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </method>
    </class>
    <markers>
      <todo line="1600">check this worked</todo>
    </markers>
    <parse_markers>
      <critical line="405" code="50019">No short description for property $smtp</critical>
      <critical line="410" code="50019">No short description for property $to</critical>
      <critical line="415" code="50019">No short description for property $cc</critical>
      <critical line="420" code="50019">No short description for property $bcc</critical>
      <critical line="425" code="50019">No short description for property $ReplyTo</critical>
      <critical line="430" code="50019">No short description for property $all_recipients</critical>
      <critical line="435" code="50019">No short description for property $attachment</critical>
      <critical line="440" code="50019">No short description for property $CustomHeader</critical>
      <critical line="445" code="50019">No short description for property $message_type</critical>
      <critical line="450" code="50019">No short description for property $boundary</critical>
      <critical line="455" code="50019">No short description for property $language</critical>
      <critical line="460" code="50019">No short description for property $error_count</critical>
      <critical line="465" code="50019">No short description for property $sign_cert_file</critical>
      <critical line="470" code="50019">No short description for property $sign_key_file</critical>
      <critical line="475" code="50019">No short description for property $sign_key_pass</critical>
      <critical line="480" code="50019">No short description for property $exceptions</critical>
    </parse_markers>
    <source>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</source>
  </file>
  <file path="class.pop3.php" hash="eb605e83af9ece1ddb96aa1b4cd59a7f" package="PHPMailer">
    <docblock line="25">
      <description><![CDATA[PHPMailer - PHP POP Before SMTP Authentication Class
NOTE: Designed for use with PHP version 5 and up]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="25" name="package" description="PHPMailer"/>
      <tag line="25" name="author" description="Andy Prevost"/>
      <tag line="25" name="author" description="Marcus Bointon"/>
      <tag line="25" name="author" description="Jim Jagielski"/>
      <tag line="25" name="copyright" description="2010 - 2012 Jim Jagielski"/>
      <tag line="25" name="copyright" description="2004 - 2009 Andy Prevost"/>
      <tag line="25" name="license" description="http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL)"/>
    </docblock>
    <class final="false" abstract="false" namespace="global" line="59" package="PHPMailer">
      <extends/>
      <name>POP3</name>
      <full_name>\POP3</full_name>
      <docblock line="37">
        <description><![CDATA[PHP POP-Before-SMTP Authentication Class]]></description>
        <long-description><![CDATA[<p>Version 5.2.2</p>]]></long-description>
        <tag line="37" name="license" description=": LGPL, see PHPMailer License&#10;Specifically for PHPMailer to allow POP before SMTP authentication.&#10;Does not yet work with APOP - if you have an APOP account, contact Jim Jagielski&#10;and we can test changes to this script.&#10;This class is based on the structure of the SMTP class originally authored by Chris Ryan&#10;This class is rfc 1939 compliant and implements all the commands&#10;required for POP3 connection, authentication and disconnection."/>
        <tag line="37" name="package" description="PHPMailer"/>
        <tag line="37" name="author" description="Richard Davey (orig) &lt;rich@corephp.co.uk&gt;"/>
        <tag line="37" name="author" description="Andy Prevost"/>
        <tag line="37" name="author" description="Jim Jagielski"/>
      </docblock>
      <property final="false" static="false" visibility="public" line="64" namespace="global" package="Default">
        <name>$POP3_PORT</name>
        <default><![CDATA[110]]></default>
        <docblock line="60">
          <description><![CDATA[Default POP3 port]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="60" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="70" namespace="global" package="Default">
        <name>$POP3_TIMEOUT</name>
        <default><![CDATA[30]]></default>
        <docblock line="66">
          <description><![CDATA[Default Timeout]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="66" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="76" namespace="global" package="Default">
        <name>$CRLF</name>
        <default><![CDATA["\r\n"]]></default>
        <docblock line="72">
          <description><![CDATA[POP3 Carriage Return + Line Feed]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="72" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="82" namespace="global" package="Default">
        <name>$do_debug</name>
        <default><![CDATA[2]]></default>
        <docblock line="78">
          <description><![CDATA[Displaying Debug warnings? (0 = now, 1+ = yes)]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="78" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="88" namespace="global" package="Default">
        <name>$host</name>
        <default><![CDATA[]]></default>
        <docblock line="84">
          <description><![CDATA[POP3 Mail Server]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="84" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="94" namespace="global" package="Default">
        <name>$port</name>
        <default><![CDATA[]]></default>
        <docblock line="90">
          <description><![CDATA[POP3 Port]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="90" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="100" namespace="global" package="Default">
        <name>$tval</name>
        <default><![CDATA[]]></default>
        <docblock line="96">
          <description><![CDATA[POP3 Timeout Value]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="96" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="106" namespace="global" package="Default">
        <name>$username</name>
        <default><![CDATA[]]></default>
        <docblock line="102">
          <description><![CDATA[POP3 Username]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="102" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="112" namespace="global" package="Default">
        <name>$password</name>
        <default><![CDATA[]]></default>
        <docblock line="108">
          <description><![CDATA[POP3 Password]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="108" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="118" namespace="global" package="Default">
        <name>$Version</name>
        <default><![CDATA['5.2.2']]></default>
        <docblock line="114">
          <description><![CDATA[Sets the POP3 PHPMailer Version number]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="114" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="private" line="127" namespace="global" package="Default">
        <name>$pop_conn</name>
        <default><![CDATA[]]></default>
        <docblock line="124">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="124" name="var" description="Resource handle for the POP connection socket" type="resource">
            <type by_reference="false">resource</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="private" line="131" namespace="global" package="Default">
        <name>$connected</name>
        <default><![CDATA[]]></default>
        <docblock line="128">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="128" name="var" description="Are we connected?" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="private" line="135" namespace="global" package="Default">
        <name>$error</name>
        <default><![CDATA[]]></default>
        <docblock line="132">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="132" name="var" description="Error container" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="142" package="PHPMailer">
        <name>__construct</name>
        <full_name>__construct</full_name>
        <docblock line="137">
          <description><![CDATA[Constructor, sets the initial values]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="137" name="access" description="public"/>
          <tag line="137" name="return" description="" type="\POP3">
            <type by_reference="false">\POP3</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="159" package="PHPMailer">
        <name>Authorise</name>
        <full_name>Authorise</full_name>
        <docblock line="148">
          <description><![CDATA[Combination of public events - connect, login, disconnect]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="148" name="access" description="public"/>
          <tag line="148" name="param" description="" type="string" variable="$host">
            <type by_reference="false">string</type>
          </tag>
          <tag line="148" name="param" description="" type="bool|int" variable="$port">
            <type by_reference="false">bool</type>
            <type by_reference="false">int</type>
          </tag>
          <tag line="148" name="param" description="" type="bool|int" variable="$tval">
            <type by_reference="false">bool</type>
            <type by_reference="false">int</type>
          </tag>
          <tag line="148" name="param" description="" type="string" variable="$username">
            <type by_reference="false">string</type>
          </tag>
          <tag line="148" name="param" description="" type="string" variable="$password">
            <type by_reference="false">string</type>
          </tag>
          <tag line="148" name="param" description="" type="int" variable="$debug_level">
            <type by_reference="false">int</type>
          </tag>
          <tag line="148" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="159">
          <name>$host</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="159">
          <name>$port</name>
          <default><![CDATA[false]]></default>
          <type/>
        </argument>
        <argument line="159">
          <name>$tval</name>
          <default><![CDATA[false]]></default>
          <type/>
        </argument>
        <argument line="159">
          <name>$username</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="159">
          <name>$password</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="159">
          <name>$debug_level</name>
          <default><![CDATA[0]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="211" package="PHPMailer">
        <name>Connect</name>
        <full_name>Connect</full_name>
        <docblock line="203">
          <description><![CDATA[Connect to the POP3 server]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="203" name="access" description="public"/>
          <tag line="203" name="param" description="" type="string" variable="$host">
            <type by_reference="false">string</type>
          </tag>
          <tag line="203" name="param" description="" type="bool|int" variable="$port">
            <type by_reference="false">bool</type>
            <type by_reference="false">int</type>
          </tag>
          <tag line="203" name="param" description="" type="integer" variable="$tval">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="203" name="return" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="211">
          <name>$host</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="211">
          <name>$port</name>
          <default><![CDATA[false]]></default>
          <type/>
        </argument>
        <argument line="211">
          <name>$tval</name>
          <default><![CDATA[30]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="286" package="PHPMailer">
        <name>Login</name>
        <full_name>Login</full_name>
        <docblock line="279">
          <description><![CDATA[Login to the POP3 server (does not support APOP yet)]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="279" name="access" description="public"/>
          <tag line="279" name="param" description="" type="string" variable="$username">
            <type by_reference="false">string</type>
          </tag>
          <tag line="279" name="param" description="" type="string" variable="$password">
            <type by_reference="false">string</type>
          </tag>
          <tag line="279" name="return" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="286">
          <name>$username</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
        <argument line="286">
          <name>$password</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="326" package="PHPMailer">
        <name>Disconnect</name>
        <full_name>Disconnect</full_name>
        <docblock line="322">
          <description><![CDATA[Disconnect from the POP3 server]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="322" name="access" description="public"/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="343" package="PHPMailer">
        <name>getResponse</name>
        <full_name>getResponse</full_name>
        <docblock line="336">
          <description><![CDATA[Get the socket response back.]]></description>
          <long-description><![CDATA[<p>$size is the maximum number of bytes to retrieve</p>]]></long-description>
          <tag line="336" name="access" description="private"/>
          <tag line="336" name="param" description="" type="integer" variable="$size">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="336" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="343">
          <name>$size</name>
          <default><![CDATA[128]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="355" package="PHPMailer">
        <name>sendString</name>
        <full_name>sendString</full_name>
        <docblock line="349">
          <description><![CDATA[Send a string down the open socket connection to the POP3 server]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="349" name="access" description="private"/>
          <tag line="349" name="param" description="" type="string" variable="$string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="349" name="return" description="" type="integer">
            <type by_reference="false">integer</type>
          </tag>
        </docblock>
        <argument line="355">
          <name>$string</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="367" package="PHPMailer">
        <name>checkResponse</name>
        <full_name>checkResponse</full_name>
        <docblock line="361">
          <description><![CDATA[Checks the POP3 server response for +OK or -ERR]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="361" name="access" description="private"/>
          <tag line="361" name="param" description="" type="string" variable="$string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="361" name="return" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="367">
          <name>$string</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="390" package="PHPMailer">
        <name>displayErrors</name>
        <full_name>displayErrors</full_name>
        <docblock line="386">
          <description><![CDATA[If debug is enabled, display the error message array]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="386" name="access" description="private"/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="408" package="PHPMailer">
        <name>catchWarning</name>
        <full_name>catchWarning</full_name>
        <docblock line="400">
          <description><![CDATA[Takes over from PHP for the socket warning handler]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="400" name="access" description="private"/>
          <tag line="400" name="param" description="" type="integer" variable="$errno">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="400" name="param" description="" type="string" variable="$errstr">
            <type by_reference="false">string</type>
          </tag>
          <tag line="400" name="param" description="" type="string" variable="$errfile">
            <type by_reference="false">string</type>
          </tag>
          <tag line="400" name="param" description="" type="integer" variable="$errline">
            <type by_reference="false">integer</type>
          </tag>
        </docblock>
        <argument line="408">
          <name>$errno</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="408">
          <name>$errstr</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="408">
          <name>$errfile</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="408">
          <name>$errline</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
    <parse_markers>
      <critical line="124" code="50019">No short description for property $pop_conn</critical>
      <critical line="128" code="50019">No short description for property $connected</critical>
      <critical line="132" code="50019">No short description for property $error</critical>
    </parse_markers>
    <source>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</source>
  </file>
  <file path="class.smtp.php" hash="8c3375776e96c3d8537e310069f3c2e8" package="PHPMailer">
    <docblock line="25">
      <description><![CDATA[PHPMailer - PHP SMTP email transport class
NOTE: Designed for use with PHP version 5 and up]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="25" name="package" description="PHPMailer"/>
      <tag line="25" name="author" description="Andy Prevost"/>
      <tag line="25" name="author" description="Marcus Bointon"/>
      <tag line="25" name="copyright" description="2004 - 2008 Andy Prevost"/>
      <tag line="25" name="author" description="Jim Jagielski"/>
      <tag line="25" name="copyright" description="2010 - 2012 Jim Jagielski"/>
      <tag line="25" name="license" description="http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL)"/>
    </docblock>
    <include line="366" type="Require Once" package="Default">
      <name>ntlm_sasl_client.php</name>
    </include>
    <class final="false" abstract="false" namespace="global" line="46" package="PHPMailer">
      <extends/>
      <name>SMTP</name>
      <full_name>\SMTP</full_name>
      <docblock line="37">
        <description><![CDATA[PHP RFC821 SMTP client]]></description>
        <long-description><![CDATA[<p>Implements all the RFC 821 SMTP commands except TURN which will always return a not implemented error.
SMTP also provides some utility methods for sending mail to an SMTP server.</p>]]></long-description>
        <tag line="37" name="author" description="Chris Ryan"/>
        <tag line="37" name="package" description="PHPMailer"/>
      </docblock>
      <property final="false" static="false" visibility="public" line="51" namespace="global" package="Default">
        <name>$SMTP_PORT</name>
        <default><![CDATA[25]]></default>
        <docblock line="47">
          <description><![CDATA[SMTP server port]]></description>
          <long-description><![CDATA[<p>@var int</p>]]></long-description>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="57" namespace="global" package="Default">
        <name>$CRLF</name>
        <default><![CDATA["\r\n"]]></default>
        <docblock line="53">
          <description><![CDATA[SMTP reply line ending (don't change)]]></description>
          <long-description><![CDATA[<p>@var string</p>]]></long-description>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="63" namespace="global" package="Default">
        <name>$do_debug</name>
        <default><![CDATA[]]></default>
        <docblock line="59">
          <description><![CDATA[Sets whether debugging is turned on]]></description>
          <long-description><![CDATA[<p>@var bool</p>]]></long-description>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="70" namespace="global" package="Default">
        <name>$Debugoutput</name>
        <default><![CDATA["echo"]]></default>
        <docblock line="65">
          <description><![CDATA[Sets the function/method to use for debugging output.]]></description>
          <long-description><![CDATA[<p>Right now we only honor "echo" or "error_log"</p>]]></long-description>
          <tag line="65" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="76" namespace="global" package="Default">
        <name>$do_verp</name>
        <default><![CDATA[false]]></default>
        <docblock line="72">
          <description><![CDATA[Sets VERP use on/off (default is off)]]></description>
          <long-description><![CDATA[<p>@var bool</p>]]></long-description>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="82" namespace="global" package="Default">
        <name>$Timeout</name>
        <default><![CDATA[15]]></default>
        <docblock line="78">
          <description><![CDATA[Sets the SMTP timeout value for reads, in seconds]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="78" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="88" namespace="global" package="Default">
        <name>$Timelimit</name>
        <default><![CDATA[30]]></default>
        <docblock line="84">
          <description><![CDATA[Sets the SMTP timelimit value for reads, in seconds]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="84" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="public" line="94" namespace="global" package="Default">
        <name>$Version</name>
        <default><![CDATA['5.2.2']]></default>
        <docblock line="90">
          <description><![CDATA[Sets the SMTP PHPMailer Version number]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="90" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="private" line="103" namespace="global" package="Default">
        <name>$smtp_conn</name>
        <default><![CDATA[]]></default>
        <docblock line="100">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="100" name="var" description="The socket to the server" type="resource">
            <type by_reference="false">resource</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="private" line="107" namespace="global" package="Default">
        <name>$error</name>
        <default><![CDATA[]]></default>
        <docblock line="104">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="104" name="var" description="Error message, if any, for the last call" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="private" line="111" namespace="global" package="Default">
        <name>$helo_rply</name>
        <default><![CDATA[]]></default>
        <docblock line="108">
          <description><![CDATA[]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="108" name="var" description="The reply the server sent to us for HELO" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="117" package="PHPMailer">
        <name>edebug</name>
        <full_name>edebug</full_name>
        <docblock line="113">
          <description><![CDATA[Outputs debugging info via user-defined method]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="113" name="param" description="" type="string" variable="$str">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="117">
          <name>$str</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="130" package="PHPMailer">
        <name>__construct</name>
        <full_name>__construct</full_name>
        <docblock line="125">
          <description><![CDATA[Initialize the class so that the data is in a known state.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="125" name="access" description="public"/>
          <tag line="125" name="return" description="" type="\SMTP">
            <type by_reference="false">\SMTP</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="158" package="PHPMailer">
        <name>Connect</name>
        <full_name>Connect</full_name>
        <docblock line="142">
          <description><![CDATA[Connect to the server specified on the port specified.]]></description>
          <long-description><![CDATA[<p>If the port is not specified use the default SMTP_PORT.
If tval is specified then a connection will try and be
established with the server for that number of seconds.
If tval is not specified the default is 30 seconds to
try on the connection.</p>

<p>SMTP CODE SUCCESS: 220
SMTP CODE FAILURE: 421</p>]]></long-description>
          <tag line="142" name="access" description="public"/>
          <tag line="142" name="param" description="" type="string" variable="$host">
            <type by_reference="false">string</type>
          </tag>
          <tag line="142" name="param" description="" type="int" variable="$port">
            <type by_reference="false">int</type>
          </tag>
          <tag line="142" name="param" description="" type="int" variable="$tval">
            <type by_reference="false">int</type>
          </tag>
          <tag line="142" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="158">
          <name>$host</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="158">
          <name>$port</name>
          <default><![CDATA[0]]></default>
          <type/>
        </argument>
        <argument line="158">
          <name>$tval</name>
          <default><![CDATA[30]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="219" package="PHPMailer">
        <name>StartTLS</name>
        <full_name>StartTLS</full_name>
        <docblock line="210">
          <description><![CDATA[Initiate a TLS communication with the server.]]></description>
          <long-description><![CDATA[<p>SMTP CODE 220 Ready to start TLS
SMTP CODE 501 Syntax error (no parameters allowed)
SMTP CODE 454 TLS not available due to temporary reason</p>]]></long-description>
          <tag line="210" name="access" description="public"/>
          <tag line="210" name="return" description="success" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="266" package="PHPMailer">
        <name>Authenticate</name>
        <full_name>Authenticate</full_name>
        <docblock line="255">
          <description><![CDATA[Performs SMTP authentication.]]></description>
          <long-description><![CDATA[<p>Must be run after running the
Hello() method.  Returns true if successfully authenticated.</p>]]></long-description>
          <tag line="255" name="access" description="public"/>
          <tag line="255" name="param" description="" type="string" variable="$username">
            <type by_reference="false">string</type>
          </tag>
          <tag line="255" name="param" description="" type="string" variable="$password">
            <type by_reference="false">string</type>
          </tag>
          <tag line="255" name="param" description="" type="string" variable="$authtype">
            <type by_reference="false">string</type>
          </tag>
          <tag line="255" name="param" description="" type="string" variable="$realm">
            <type by_reference="false">string</type>
          </tag>
          <tag line="255" name="param" description="" type="string" variable="$workstation">
            <type by_reference="false">string</type>
          </tag>
          <tag line="255" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="266">
          <name>$username</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="266">
          <name>$password</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="266">
          <name>$authtype</name>
          <default><![CDATA['LOGIN']]></default>
          <type/>
        </argument>
        <argument line="266">
          <name>$realm</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
        <argument line="266">
          <name>$workstation</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="425" package="PHPMailer">
        <name>Connected</name>
        <full_name>Connected</full_name>
        <docblock line="420">
          <description><![CDATA[Returns true if connected to a server otherwise false]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="420" name="access" description="public"/>
          <tag line="420" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="448" package="PHPMailer">
        <name>Close</name>
        <full_name>Close</full_name>
        <docblock line="441">
          <description><![CDATA[Closes the socket and cleans up the state of the class.]]></description>
          <long-description><![CDATA[<p>It is not considered good to use this function without
first trying to use QUIT.</p>]]></long-description>
          <tag line="441" name="access" description="public"/>
          <tag line="441" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="482" package="PHPMailer">
        <name>Data</name>
        <full_name>Data</full_name>
        <docblock line="462">
          <description><![CDATA[Issues a data command and sends the msg_data to the server
finializing the mail transaction.]]></description>
          <long-description><![CDATA[<p>$msg_data is the message
that is to be send with the headers. Each header needs to be
on a single line followed by a <CRLF> with the message headers
and the message body being seperated by and additional <CRLF>.</p>

<p>Implements rfc 821: DATA <CRLF></p>

<p>SMTP CODE INTERMEDIATE: 354
    [data]
    <CRLF>.<CRLF>
    SMTP CODE SUCCESS: 250
    SMTP CODE FAILURE: 552,554,451,452
SMTP CODE FAILURE: 451,554
SMTP CODE ERROR  : 500,501,503,421</p>]]></long-description>
          <tag line="462" name="access" description="public"/>
          <tag line="462" name="param" description="" type="string" variable="$msg_data">
            <type by_reference="false">string</type>
          </tag>
          <tag line="462" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="482">
          <name>$msg_data</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="620" package="PHPMailer">
        <name>Hello</name>
        <full_name>Hello</full_name>
        <docblock line="607">
          <description><![CDATA[Sends the HELO command to the smtp server.]]></description>
          <long-description><![CDATA[<p>This makes sure that we and the server are in
the same known state.</p>

<p>Implements from rfc 821: HELO <SP> <domain> <CRLF></p>

<p>SMTP CODE SUCCESS: 250
SMTP CODE ERROR  : 500, 501, 504, 421</p>]]></long-description>
          <tag line="607" name="access" description="public"/>
          <tag line="607" name="param" description="" type="string" variable="$host">
            <type by_reference="false">string</type>
          </tag>
          <tag line="607" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="620">
          <name>$host</name>
          <default><![CDATA['']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="652" package="PHPMailer">
        <name>SendHello</name>
        <full_name>SendHello</full_name>
        <docblock line="645">
          <description><![CDATA[Sends a HELO/EHLO command.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="645" name="access" description="private"/>
          <tag line="645" name="param" description="" type="string" variable="$hello">
            <type by_reference="false">string</type>
          </tag>
          <tag line="645" name="param" description="" type="string" variable="$host">
            <type by_reference="false">string</type>
          </tag>
          <tag line="645" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="652">
          <name>$hello</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="652">
          <name>$host</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="693" package="PHPMailer">
        <name>Mail</name>
        <full_name>Mail</full_name>
        <docblock line="678">
          <description><![CDATA[Starts a mail transaction from the email address specified in
$from.]]></description>
          <long-description><![CDATA[<p>Returns true if successful or false otherwise. If True
the mail transaction is started and then one or more Recipient
commands may be called followed by a Data command.</p>

<p>Implements rfc 821: MAIL <SP> FROM:<reverse-path> <CRLF></p>

<p>SMTP CODE SUCCESS: 250
SMTP CODE SUCCESS: 552,451,452
SMTP CODE SUCCESS: 500,501,421</p>]]></long-description>
          <tag line="678" name="access" description="public"/>
          <tag line="678" name="param" description="" type="string" variable="$from">
            <type by_reference="false">string</type>
          </tag>
          <tag line="678" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="693">
          <name>$from</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="737" package="PHPMailer">
        <name>Quit</name>
        <full_name>Quit</full_name>
        <docblock line="725">
          <description><![CDATA[Sends the quit command to the server and then closes the socket
if there is no error or the $close_on_error argument is true.]]></description>
          <long-description><![CDATA[<p>Implements from rfc 821: QUIT <CRLF></p>

<p>SMTP CODE SUCCESS: 221
SMTP CODE ERROR  : 500</p>]]></long-description>
          <tag line="725" name="access" description="public"/>
          <tag line="725" name="param" description="" type="bool" variable="$close_on_error">
            <type by_reference="false">bool</type>
          </tag>
          <tag line="725" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="737">
          <name>$close_on_error</name>
          <default><![CDATA[true]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="791" package="PHPMailer">
        <name>Recipient</name>
        <full_name>Recipient</full_name>
        <docblock line="778">
          <description><![CDATA[Sends the command RCPT to the SMTP server with the TO: argument of $to.]]></description>
          <long-description><![CDATA[<p>Returns true if the recipient was accepted false if it was rejected.</p>

<p>Implements from rfc 821: RCPT <SP> TO:<forward-path> <CRLF></p>

<p>SMTP CODE SUCCESS: 250,251
SMTP CODE FAILURE: 550,551,552,553,450,451,452
SMTP CODE ERROR  : 500,501,503,421</p>]]></long-description>
          <tag line="778" name="access" description="public"/>
          <tag line="778" name="param" description="" type="string" variable="$to">
            <type by_reference="false">string</type>
          </tag>
          <tag line="778" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="791">
          <name>$to</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="834" package="PHPMailer">
        <name>Reset</name>
        <full_name>Reset</full_name>
        <docblock line="822">
          <description><![CDATA[Sends the RSET command to abort and transaction that is
currently in progress.]]></description>
          <long-description><![CDATA[<p>Returns true if successful false
otherwise.</p>

<p>Implements rfc 821: RSET <CRLF></p>

<p>SMTP CODE SUCCESS: 250
SMTP CODE ERROR  : 500,501,504,421</p>]]></long-description>
          <tag line="822" name="access" description="public"/>
          <tag line="822" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="883" package="PHPMailer">
        <name>SendAndMail</name>
        <full_name>SendAndMail</full_name>
        <docblock line="866">
          <description><![CDATA[Starts a mail transaction from the email address specified in
$from.]]></description>
          <long-description><![CDATA[<p>Returns true if successful or false otherwise. If True
the mail transaction is started and then one or more Recipient
commands may be called followed by a Data command. This command
will send the message to the users terminal if they are logged
in and send them an email.</p>

<p>Implements rfc 821: SAML <SP> FROM:<reverse-path> <CRLF></p>

<p>SMTP CODE SUCCESS: 250
SMTP CODE SUCCESS: 552,451,452
SMTP CODE SUCCESS: 500,501,502,421</p>]]></long-description>
          <tag line="866" name="access" description="public"/>
          <tag line="866" name="param" description="" type="string" variable="$from">
            <type by_reference="false">string</type>
          </tag>
          <tag line="866" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
        <argument line="883">
          <name>$from</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="927" package="PHPMailer">
        <name>Turn</name>
        <full_name>Turn</full_name>
        <docblock line="914">
          <description><![CDATA[This is an optional command for SMTP that this class does not
support.]]></description>
          <long-description><![CDATA[<p>This method is here to make the RFC821 Definition
complete for this class and <strong>may</strong> be implimented in the future</p>

<p>Implements from rfc 821: TURN <CRLF></p>

<p>SMTP CODE SUCCESS: 250
SMTP CODE FAILURE: 502
SMTP CODE ERROR  : 500, 503</p>]]></long-description>
          <tag line="914" name="access" description="public"/>
          <tag line="914" name="return" description="" type="bool">
            <type by_reference="false">bool</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="941" package="PHPMailer">
        <name>getError</name>
        <full_name>getError</full_name>
        <docblock line="936">
          <description><![CDATA[Get the current error]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="936" name="access" description="public"/>
          <tag line="936" name="return" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="958" package="PHPMailer">
        <name>get_lines</name>
        <full_name>get_lines</full_name>
        <docblock line="949">
          <description><![CDATA[Read in as many lines as possible
either before eof or socket timeout occurs on the operation.]]></description>
          <long-description><![CDATA[<p>With SMTP we can tell if we have more lines to read if the
4th character is '-' symbol. If it is a space then we don't
need to read anything else.</p>]]></long-description>
          <tag line="949" name="access" description="private"/>
          <tag line="949" name="return" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </method>
    </class>
    <parse_markers>
      <critical line="100" code="50019">No short description for property $smtp_conn</critical>
      <critical line="104" code="50019">No short description for property $error</critical>
      <critical line="108" code="50019">No short description for property $helo_rply</critical>
    </parse_markers>
    <source>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</source>
  </file>
  <package name="Default" full_name="Default"/>
  <package name="PHPMailer" full_name="PHPMailer"/>
  <namespace name="global" full_name="global"/>
  <marker count="2">todo</marker>
  <marker count="0">fixme</marker>
  <deprecated count="4"/>
</project>
