Index: branches/5.3.x/core/kernel/utility/email.php =================================================================== diff -u -N -r15944 -r16111 --- branches/5.3.x/core/kernel/utility/email.php (.../email.php) (revision 15944) +++ branches/5.3.x/core/kernel/utility/email.php (.../email.php) (revision 16111) @@ -1,6 +1,6 @@ Application->Parser->Params; // backup parser params $this->Application->Parser->SetParams($this->params); - $text = $this->Application->Parser->Parse($this->_normalizeLineEndings($text), 'email_template'); + $template_name = 'et_' . $this->emailTemplate->GetID() . '_' . crc32($text); + $text = $this->Application->Parser->Parse($this->_normalizeLineEndings($text), $template_name); $this->Application->Parser->SetParams($parser_params); // restore parser params $category_helper = $this->Application->recallObject('CategoryHelper');