Revision 1020
Added by Matthias over 16 years ago
| class.phpmailer.php | ||
|---|---|---|
| 2 | 2 |
/*~ class.phpmailer.php |
| 3 | 3 |
.---------------------------------------------------------------------------. |
| 4 | 4 |
| Software: PHPMailer - PHP email class | |
| 5 |
| Version: 2.0.3 |
|
|
| 5 |
| Version: 2.0.4 |
|
|
| 6 | 6 |
| Contact: via sourceforge.net support pages (also www.codeworxtech.com) | |
| 7 | 7 |
| Info: http://phpmailer.sourceforge.net | |
| 8 | 8 |
| Support: http://sourceforge.net/projects/phpmailer/ | |
| ... | ... | |
| 28 | 28 |
* PHPMailer - PHP email transport class |
| 29 | 29 |
* @package PHPMailer |
| 30 | 30 |
* @author Andy Prevost |
| 31 |
* @copyright 2004 - 2008 Andy Prevost
|
|
| 31 |
* @copyright 2004 - 2009 Andy Prevost
|
|
| 32 | 32 |
*/ |
| 33 | 33 |
|
| 34 | 34 |
class PHPMailer {
|
| ... | ... | |
| 139 | 139 |
* Holds PHPMailer version. |
| 140 | 140 |
* @var string |
| 141 | 141 |
*/ |
| 142 |
var $Version = "2.0.3";
|
|
| 142 |
var $Version = "2.0.4";
|
|
| 143 | 143 |
|
| 144 | 144 |
/** |
| 145 | 145 |
* Sets the email address that a reading confirmation will be sent. |
| ... | ... | |
| 256 | 256 |
var $boundary = array(); |
| 257 | 257 |
var $language = array(); |
| 258 | 258 |
var $error_count = 0; |
| 259 |
var $LE = "\r\n";
|
|
| 259 |
var $LE = "\n"; |
|
| 260 | 260 |
var $sign_cert_file = ""; |
| 261 | 261 |
var $sign_key_file = ""; |
| 262 | 262 |
var $sign_key_pass = ""; |
Also available in: Unified diff
Update PHPMailer to version 2.0.4 (ticket #733)