Skip to content

Commit

Permalink
Clean up incorrect package naming
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX committed Dec 9, 2011
1 parent 80faf76 commit d592e33
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions Mail/Mime2.php
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php <?php
/** /**
* The Mail_Mime class is used to create MIME E-mail messages * The Mail_Mime2 class is used to create MIME E-mail messages
* *
* The Mail_Mime class provides an OO interface to create MIME * The Mail_Mime2 class provides an OO interface to create MIME
* enabled email messages. This way you can create emails that * enabled email messages. This way you can create emails that
* contain plain-text bodies, HTML bodies, attachments, inline * contain plain-text bodies, HTML bodies, attachments, inline
* images and specific headers. * images and specific headers.
Expand Down Expand Up @@ -40,7 +40,7 @@
* THE POSSIBILITY OF SUCH DAMAGE. * THE POSSIBILITY OF SUCH DAMAGE.
* *
* @category Mail * @category Mail
* @package Mail_Mime * @package Mail_Mime2
* @author Richard Heyes <richard@phpguru.org> * @author Richard Heyes <richard@phpguru.org>
* @author Tomas V.V. Cox <cox@idecnet.com> * @author Tomas V.V. Cox <cox@idecnet.com>
* @author Cipriano Groenendal <cipri@php.net> * @author Cipriano Groenendal <cipri@php.net>
Expand All @@ -49,7 +49,7 @@
* @copyright 2003-2006 PEAR <pear-group@php.net> * @copyright 2003-2006 PEAR <pear-group@php.net>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License * @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @version CVS: $Id$ * @version CVS: $Id$
* @link http://pear.php.net/package/Mail_mime * @link http://pear.php.net/package/Mail_Mime2
* *
* This class is based on HTML Mime Mail class from * This class is based on HTML Mime Mail class from
* Richard Heyes <richard@phpguru.org> which was based also * Richard Heyes <richard@phpguru.org> which was based also
Expand All @@ -76,21 +76,21 @@




/** /**
* The Mail_Mime class provides an OO interface to create MIME * The Mail_Mime2 class provides an OO interface to create MIME
* enabled email messages. This way you can create emails that * enabled email messages. This way you can create emails that
* contain plain-text bodies, HTML bodies, attachments, inline * contain plain-text bodies, HTML bodies, attachments, inline
* images and specific headers. * images and specific headers.
* *
* @category Mail * @category Mail
* @package Mail_Mime * @package Mail_Mime2
* @author Richard Heyes <richard@phpguru.org> * @author Richard Heyes <richard@phpguru.org>
* @author Tomas V.V. Cox <cox@idecnet.com> * @author Tomas V.V. Cox <cox@idecnet.com>
* @author Cipriano Groenendal <cipri@php.net> * @author Cipriano Groenendal <cipri@php.net>
* @author Sean Coates <sean@php.net> * @author Sean Coates <sean@php.net>
* @copyright 2003-2006 PEAR <pear-group@php.net> * @copyright 2003-2006 PEAR <pear-group@php.net>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License * @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @version Release: @package_version@ * @version Release: @package_version@
* @link http://pear.php.net/package/Mail_mime * @link http://pear.php.net/package/Mail_Mime2
*/ */
class Mail_Mime2 class Mail_Mime2
{ {
Expand Down Expand Up @@ -172,7 +172,7 @@ class Mail_Mime2
* @return void * @return void
* @access public * @access public
*/ */
function Mail_mime($params = array()) function __construct($params = array())
{ {
// Backward-compatible EOL setting // Backward-compatible EOL setting
if (is_string($params)) { if (is_string($params)) {
Expand Down Expand Up @@ -686,7 +686,7 @@ function _addAttachmentPart($obj, $value)
/** /**
* Returns the complete e-mail, ready to send using an alternative * Returns the complete e-mail, ready to send using an alternative
* mail delivery method. Note that only the mailpart that is made * mail delivery method. Note that only the mailpart that is made
* with Mail_Mime is created. This means that, * with Mail_Mime2 is created. This means that,
* YOU WILL HAVE NO TO: HEADERS UNLESS YOU SET IT YOURSELF * YOU WILL HAVE NO TO: HEADERS UNLESS YOU SET IT YOURSELF
* using the $headers parameter! * using the $headers parameter!
* *
Expand Down
12 changes: 6 additions & 6 deletions Mail/MimePart2.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* The Mail_MimePart2 class is used to create MIME E-mail messages * The Mail_MimePart2 class is used to create MIME E-mail messages
* *
* This class enables you to manipulate and build a mime email * This class enables you to manipulate and build a mime email
* from the ground up. The Mail_Mime class is a userfriendly api * from the ground up. The Mail_Mime2 class is a userfriendly api
* to this class for people who aren't interested in the internals * to this class for people who aren't interested in the internals
* of mime mail. * of mime mail.
* This class however allows full control over the email. * This class however allows full control over the email.
Expand Down Expand Up @@ -41,37 +41,37 @@
* THE POSSIBILITY OF SUCH DAMAGE. * THE POSSIBILITY OF SUCH DAMAGE.
* *
* @category Mail * @category Mail
* @package Mail_Mime * @package Mail_Mime2
* @author Richard Heyes <richard@phpguru.org> * @author Richard Heyes <richard@phpguru.org>
* @author Cipriano Groenendal <cipri@php.net> * @author Cipriano Groenendal <cipri@php.net>
* @author Sean Coates <sean@php.net> * @author Sean Coates <sean@php.net>
* @author Aleksander Machniak <alec@php.net> * @author Aleksander Machniak <alec@php.net>
* @copyright 2003-2006 PEAR <pear-group@php.net> * @copyright 2003-2006 PEAR <pear-group@php.net>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License * @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @version CVS: $Id$ * @version CVS: $Id$
* @link http://pear.php.net/package/Mail_mime * @link http://pear.php.net/package/Mail_Mime2
*/ */




/** /**
* The Mail_MimePart2 class is used to create MIME E-mail messages * The Mail_MimePart2 class is used to create MIME E-mail messages
* *
* This class enables you to manipulate and build a mime email * This class enables you to manipulate and build a mime email
* from the ground up. The Mail_Mime class is a userfriendly api * from the ground up. The Mail_Mime2 class is a userfriendly api
* to this class for people who aren't interested in the internals * to this class for people who aren't interested in the internals
* of mime mail. * of mime mail.
* This class however allows full control over the email. * This class however allows full control over the email.
* *
* @category Mail * @category Mail
* @package Mail_Mime * @package Mail_Mime2
* @author Richard Heyes <richard@phpguru.org> * @author Richard Heyes <richard@phpguru.org>
* @author Cipriano Groenendal <cipri@php.net> * @author Cipriano Groenendal <cipri@php.net>
* @author Sean Coates <sean@php.net> * @author Sean Coates <sean@php.net>
* @author Aleksander Machniak <alec@php.net> * @author Aleksander Machniak <alec@php.net>
* @copyright 2003-2006 PEAR <pear-group@php.net> * @copyright 2003-2006 PEAR <pear-group@php.net>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License * @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @version Release: @package_version@ * @version Release: @package_version@
* @link http://pear.php.net/package/Mail_mime * @link http://pear.php.net/package/Mail_Mime2
*/ */
class Mail_MimePart2 class Mail_MimePart2
{ {
Expand Down

0 comments on commit d592e33

Please sign in to comment.