| 2 | | //////////////////////////////////////////////////// |
|---|
| 3 | | // PHPMailer - PHP email class |
|---|
| 4 | | // |
|---|
| 5 | | // Class for sending email using either |
|---|
| 6 | | // sendmail, PHP mail(), or SMTP. Methods are |
|---|
| 7 | | // based upon the standard AspEmail(tm) classes. |
|---|
| 8 | | // |
|---|
| 9 | | // Copyright (C) 2001 - 2003 Brent R. Matzelle |
|---|
| 10 | | // |
|---|
| 11 | | // License: LGPL, see LICENSE |
|---|
| 12 | | //////////////////////////////////////////////////// |
|---|
| | 2 | /** |
|---|
| | 3 | * PHPMailer - PHP email class |
|---|
| | 4 | * |
|---|
| | 5 | * Class for sending email using either sendmail, PHP mail(), or SMTP. Methods |
|---|
| | 6 | * are based upon the standard AspEmail(tm) classes. |
|---|
| | 7 | * |
|---|
| | 8 | * @copyright 2001 - 2003 Brent R. Matzelle |
|---|
| | 9 | * @license LGPL |
|---|
| | 10 | * @package PHPMailer |
|---|
| | 11 | */ |
|---|