Email message charset setup added.

This commit is contained in:
Paul Klimov
2013-10-29 16:11:57 +02:00
parent 1d0891f0f6
commit 99d8216103
4 changed files with 27 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ use Yii;
* @see BaseMailer
*
* @property \yii\mail\BaseMailer $mailer mailer component instance. This property is read-only.
* @property string $charset the character set of this message.
* @property string|array $from sender email address.
* @property string|array $to receiver email address.
* @property string|array $cc copy receiver email address.

View File

@@ -15,6 +15,12 @@ namespace yii\mail;
*/
interface MessageInterface
{
/**
* Set the character set of this message.
* @param string $charset character set name.
*/
public function setCharset($charset);
/**
* Sets message sender.
* @param string|array $from sender email address.