/openshift/adei

To get this branch, use:
bzr branch http://darksoft.org/webbzr/openshift/adei

« back to all changes in this revision

Viewing changes to includes/PHPMailer-Lite_v5.1/changelog.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2011-01-26 02:48:39 UTC
  • mto: This revision was merged to the branch mainline in revision 212.
  • Revision ID: csa@dside.dyndns.org-20110126024839-nv6qp2ie9stmd2dn
Support of Appled devices by Toni Pirhonen

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ChangeLog
 
2
 
 
3
NOTE: THIS VERSION OF PHPMAILER LITE IS DESIGNED FOR PHP5/PHP6.
 
4
      IT WILL NOT WORK WITH PHP4.
 
5
 
 
6
*** VERY IMPORTANT ***********************************************************
 
7
 
 
8
Notable differences between PHPMailer and PHPMailer Lite:
 
9
  - PHPMailer Lite does not include support for SMTP
 
10
  - PHPMailer Lite supports Sendmail (or Qmail) by default
 
11
  - PHPMailer Lite requires one single file (if you need language support,
 
12
    use the language files from PHPMailer - the only difference in language
 
13
    files is PHPMailer Lite does not include any SMTP messages)
 
14
 
 
15
New features introduced in PHPMailer Lite:
 
16
  - Auto identity by default 
 
17
    To assist in getting your email messages into the regular inbox and not
 
18
    identified as SPAM, all you need to do is use the:
 
19
    $mail->SetFrom('you@yourdomain.com', 'Your Name');
 
20
    - PHPMailer Lite will automatically insert the Return-path, and Reply-To
 
21
  - You can override the auto identity by using:
 
22
    $mail->Sender = 'other1@yourdomain.com';
 
23
    $mail->AddReplyTo('other2@yourdomain.com', 'Other Name');
 
24
  - Sends one single email to each To; by default (Sendmail, Qmail, mail() )
 
25
    - you can override this with:
 
26
      $mail->SingleTo = false; // true is set by default
 
27
  - Added DKIM digital signing. Tested with Yahoo, AOL, Gmail. (Tested, and
 
28
    fails with Hotmail ... Microsoft use their own SenderID or modified SPF)
 
29
    - to use DKIM digital signing, add these two properties:
 
30
                $mail->DKIM_domain   = 'yourdomain.com';
 
31
                $mail->DKIM_identity = 'you@yourdomain.com'; // optional
 
32
                $mail->DKIM_private  = file_get_contents(/path/to/private/key/' . '.htkeyprivate');
 
33
    everything else is managed automatically
 
34
    (see below for instructions on creating the files needed by PHPMailer's
 
35
    DKIM support.
 
36
        - added callback function support
 
37
                - callback function parameters include:
 
38
                        result, to, cc, bcc, subject and body
 
39
                * see the test/test_callback.php file for usage.
 
40
  - Simplified use. All you need to do is instantiate the class, and add 
 
41
    who the email is from. Then simply build your message as you normally 
 
42
    would. See the example, test.php
 
43
 
 
44
******************************************************************************
 
45
 
 
46
Version 5.1 (Sept xx, 2009) PHPMailer Lite
 
47
* fixed filename issue with AddStringAttachment (thanks to Tony)
 
48
* fixed "SingleTo" property, now works with Senmail, Qmail, and SMTP in
 
49
  addition to PHP mail()
 
50
* added DKIM digital signing functionality
 
51
  New properties:
 
52
  - DKIM_domain (sets the domain name)
 
53
  - DKIM_private (holds DKIM private key)
 
54
  - DKIM_passphrase (holds your DKIM passphrase)
 
55
  - DKIM_selector (holds the DKIM "selector")
 
56
  - DKIM_identity (holds the identifying email address)
 
57
  Note: please see 
 
58
* added callback function support
 
59
  - callback function parameters include:
 
60
    result, to, cc, bcc, subject and body
 
61
* added "auto" identity functionality
 
62
  - can automatically add:
 
63
    - Return-path (if Sender not set)
 
64
    - Reply-To (if ReplyTo not set)
 
65
  - can be disabled:
 
66
    - $mail->SetFrom('yourname@yourdomain.com','First Last',false);
 
67
    - or by adding the $mail->Sender and/or $mail->ReplyTo properties
 
68
  Note: "auto" identity added to help with emails ending up in spam
 
69
  or junk boxes because of missing headers
 
70
 
 
71
* This is the first version of PHPMailer Lite, and is based on PHPMailer v5.1 *
 
 
b'\\ No newline at end of file'