Adding missing import in EmailComponent.

Fixes #1948
This commit is contained in:
Mark Story mark@mark-story.com 2011-08-29 12:21:13 -04:00
parent ff0119ba6f
commit 443ff92280

View file

@ -18,6 +18,7 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php) * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/ */
App::import('Core', 'Multibyte'); App::import('Core', 'Multibyte');
App::import('Core', 'String');
/** /**
* EmailComponent * EmailComponent
@ -588,7 +589,7 @@ class EmailComponent extends Object{
if ($this->messageId !== false) { if ($this->messageId !== false) {
if ($this->messageId === true) { if ($this->messageId === true) {
$headers['Message-ID'] = '<' . String::UUID() . '@' . env('HTTP_HOST') . '>'; $headers['Message-ID'] = '<' . String::uuid() . '@' . env('HTTP_HOST') . '>';
} else { } else {
$headers['Message-ID'] = $this->messageId; $headers['Message-ID'] = $this->messageId;
} }