Browse Source

Set headerCharset in EmailComponent.

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

Fixes #3398
mark_story 13 years ago
parent
commit
b41705f59e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      lib/Cake/Controller/Component/EmailComponent.php

+ 1 - 0
lib/Cake/Controller/Component/EmailComponent.php

@@ -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)) {