Revision 907
Added by doc almost 17 years ago
| README | ||
|---|---|---|
| 1 |
/******************************************************************* |
|
| 2 |
* The http://phpmailer.codeworxtech.com/ website now carries a few * |
|
| 3 |
* advertisements through the Google Adsense network. Please visit * |
|
| 4 |
* the advertiser sites and help us offset some of our costs. * |
|
| 5 |
* Thanks .... * |
|
| 6 |
********************************************************************/ |
|
| 7 |
|
|
| 1 | 8 |
PHPMailer |
| 2 | 9 |
Full Featured Email Transfer Class for PHP |
| 3 | 10 |
========================================== |
| 4 | 11 |
|
| 12 |
Version 2.3 (November 08, 2008) |
|
| 13 |
|
|
| 14 |
PHP4 continues to be a major platform for developers. We are responding |
|
| 15 |
to the emails received to continue development for PHP4 with this |
|
| 16 |
release. |
|
| 17 |
|
|
| 18 |
We have removed the /phpdoc from the downloads. All documentation is now on |
|
| 19 |
the http://phpmailer.codeworxtech.com website. |
|
| 20 |
|
|
| 21 |
For all other changes and notes, please see the changelog. |
|
| 22 |
|
|
| 23 |
Donations are accepted at PayPal with our id "paypal@worxteam.com". |
|
| 24 |
|
|
| 25 |
Version 2.2 (July 15 2008) |
|
| 26 |
|
|
| 27 |
- see the changelog. |
|
| 28 |
|
|
| 29 |
Version 2.0.2 (June 04 2008) |
|
| 30 |
|
|
| 31 |
With this release, we are announcing that the development of PHPMailer for PHP5 |
|
| 32 |
will be our focus from this date on. We have implemented all the enhancements |
|
| 33 |
and fixes from the sourceforge.net Tracker. |
|
| 34 |
|
|
| 35 |
** NOTE: WE HAVE A NEW LANGUAGE VARIABLE FOR DIGITALLY SIGNED S/MIME EMAILS. |
|
| 36 |
IF YOU CAN HELP WITH LANGUAGES OTHER THAN ENGLISH AND SPANISH, IT WOULD BE |
|
| 37 |
APPRECIATED. |
|
| 38 |
|
|
| 39 |
We have now added S/MIME functionality (ability to digitally sign emails). |
|
| 40 |
BIG THANKS TO "sergiocambra" for posting this patch back in November 2007. |
|
| 41 |
The "Signed Emails" functionality adds the Sign method to pass the private key |
|
| 42 |
filename and the password to read it, and then email will be sent with |
|
| 43 |
content-type multipart/signed and with the digital signature attached. |
|
| 44 |
|
|
| 45 |
We have also included more example files to show the use of "sendmail", "mail()", |
|
| 46 |
"smtp", and "gmail". |
|
| 47 |
|
|
| 48 |
We are also looking for more programmers to join the volunteer development team. |
|
| 49 |
If you have an interest in this, please let us know. |
|
| 50 |
|
|
| 51 |
Enjoy! |
|
| 52 |
|
|
| 5 | 53 |
** NOTE: |
| 6 | 54 |
|
| 7 | 55 |
As of November 2007, PHPMailer has a new project team headed by industry |
| ... | ... | |
| 16 | 64 |
good documentation and examples, and retain backward compatibility to level |
| 17 | 65 |
1.7.3 standards. |
| 18 | 66 |
|
| 19 |
If you are interested in helping out, visit http://sourceforge.net/phpmailer
|
|
| 67 |
If you are interested in helping out, visit http://sourceforge.net/projects/phpmailer
|
|
| 20 | 68 |
and indicate your interest. |
| 21 | 69 |
|
| 22 | 70 |
** |
| ... | ... | |
| 58 | 106 |
|
| 59 | 107 |
Copy class.phpmailer.php into your php.ini include_path. If you are |
| 60 | 108 |
using the SMTP mailer then place class.smtp.php in your path as well. |
| 61 |
In the language directory you will find several files like
|
|
| 62 |
phpmailer.lang-en.php. If you look right before the .php extension
|
|
| 63 |
that there are two letters. These represent the language type of the
|
|
| 64 |
translation file. For instance "en" is the English file and "br" is
|
|
| 65 |
the Portuguese file. Chose the file that best fits with your language
|
|
| 66 |
and place it in the PHP include path. If your language is English
|
|
| 67 |
then you have nothing more to do. If it is a different language then
|
|
| 68 |
you must point PHPMailer to the correct translation. To do this, call
|
|
| 109 |
In the language directory you will find several files like |
|
| 110 |
phpmailer.lang-en.php. If you look right before the .php extension |
|
| 111 |
that there are two letters. These represent the language type of the |
|
| 112 |
translation file. For instance "en" is the English file and "br" is |
|
| 113 |
the Portuguese file. Chose the file that best fits with your language |
|
| 114 |
and place it in the PHP include path. If your language is English |
|
| 115 |
then you have nothing more to do. If it is a different language then |
|
| 116 |
you must point PHPMailer to the correct translation. To do this, call |
|
| 69 | 117 |
the PHPMailer SetLanguage method like so: |
| 70 | 118 |
|
| 71 | 119 |
// To load the Portuguese version |
Also available in: Unified diff
updated external PHPMailer class to latest version (v2.3)