Changeset 8103 for branches/crazyhorse/wp-includes/class-smtp.php
- Timestamp:
- 06/16/2008 09:08:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crazyhorse/wp-includes/class-smtp.php
r5700 r8103 1 1 <?php 2 //////////////////////////////////////////////////// 3 // SMTP - PHP SMTP class 4 // 5 // Version 1.02 6 // 7 // Define an SMTP class that can be used to connect 8 // and communicate with any SMTP server. It implements 9 // all the SMTP functions defined in RFC821 except TURN. 10 // 11 // Author: Chris Ryan 12 // 13 // License: LGPL, see LICENSE 14 //////////////////////////////////////////////////// 2 /** 3 * SMTP - PHP SMTP class 4 * 5 * Define an SMTP class that can be used to connect and communicate with any 6 * SMTP server. It implements all the SMTP functions defined in RFC821 except 7 * TURN. 8 * 9 * @version 1.02 10 * @author Chris Ryan 11 * @license LGPL 12 * @package PHPMailer 13 */ 15 14 16 15 /** … … 19 18 * error. SMTP also provides some utility methods for sending mail 20 19 * to an SMTP server. 20 * 21 21 * @package PHPMailer 22 22 * @author Chris Ryan
Note: See TracChangeset
for help on using the changeset viewer.