Set headerCharset in EmailComponent.

Apply patch from 'Shota Watanabe', that sets headerCharset on CakeEmail
instances created from within EmailComponent.

Fixes #3398
This commit is contained in:
mark_story 2012-11-25 23:00:43 -05:00
parent 7402eea9eb
commit b41705f59e

View file

@ -288,6 +288,7 @@ class EmailComponent extends Component {
public function send($content = null, $template = null, $layout = null) {
$lib = new CakeEmail();
$lib->charset = $this->charset;
$lib->headerCharset = $this->charset;
$lib->from($this->_formatAddresses((array)$this->from));
if (!empty($this->to)) {