|
|
|
@ -42,6 +42,22 @@ class Message extends BaseMessage
|
|
|
|
|
/** |
|
|
|
|
* @inheritdoc |
|
|
|
|
*/ |
|
|
|
|
public function setCharset($charset) |
|
|
|
|
{ |
|
|
|
|
$this->getSwiftMessage()->setCharset($charset); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @return string the character set of this message. |
|
|
|
|
*/ |
|
|
|
|
public function getCharset() |
|
|
|
|
{ |
|
|
|
|
return $this->getSwiftMessage()->getCharset(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @inheritdoc |
|
|
|
|
*/ |
|
|
|
|
public function setFrom($from) |
|
|
|
|
{ |
|
|
|
|
$this->getSwiftMessage()->setFrom($from); |
|
|
|
|