| Current Path : /var/www/html/generated/code/Magento/Framework/Mail/Message/ |
| Current File : /var/www/html/generated/code/Magento/Framework/Mail/Message/Interceptor.php |
<?php
namespace Magento\Framework\Mail\Message;
/**
* Interceptor class for @see \Magento\Framework\Mail\Message
*/
class Interceptor extends \Magento\Framework\Mail\Message implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct($charset = 'utf-8')
{
$this->___init();
parent::__construct($charset);
}
/**
* {@inheritdoc}
*/
public function setBody($body)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'setBody');
return $pluginInfo ? $this->___callPlugins('setBody', func_get_args(), $pluginInfo) : parent::setBody($body);
}
}