Browse Source

release version 2.0.6

tags/2.0.6^0 2.0.6
Paul Klimov 8 years ago
parent
commit
26b900767f
  1. 4
      CHANGELOG.md
  2. 8
      Message.php

4
CHANGELOG.md

@ -1,8 +1,8 @@
Yii Framework 2 swiftmailer extension Change Log
================================================
2.0.6 under development
-----------------------
2.0.6 September 09, 2016
------------------------
- Enh #6: Added ability to specify custom mail header at `yii\swiftmailer\Message` (klimov-paul)
- Enh #23: Added `yii\swiftmailer\Message::setReturnPath()` shortcut method (klimov-paul)

8
Message.php

@ -20,8 +20,14 @@ use yii\mail\BaseMessage;
*
* @method Mailer getMailer() returns mailer instance.
*
* @property integer $priority Priority value as integer in range: `1..5`, where 1 is the highest priority and
* 5 is the lowest.
* @property string $readReceiptTo Receipt receive email addresses. Note that the type of this property
* differs in getter and setter. See [[getReadReceiptTo()]] and [[setReadReceiptTo()]] for details.
* @property string $returnPath The bounce email address.
* @property array|callable|\Swift_Signer $signature Signature specification. See [[addSignature()]] for
* details on how it should be specified. This property is write-only.
* @property \Swift_Message $swiftMessage Swift message instance. This property is read-only.
* @property array|callable|\Swift_Signer $signature message signature. This property is write-only.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0

Loading…
Cancel
Save