Fixes #3502. Minor fix to email component - leading newline bug

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5956 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-11-06 04:39:23 +00:00
parent 398ea30c20
commit 1e1c49025a

View file

@ -474,7 +474,7 @@ class EmailComponent extends Object{
$this->__header .= 'Content-Type: multipart/alternative; boundary="alt-' . $this->__boundary . '"' . $this->_newLine . $this->_newLine;
}
$this->__header .= 'Content-Transfer-Encoding: 7bit' . $this->_newLine;
$this->__header .= 'Content-Transfer-Encoding: 7bit';
}
/**
* Format the message by seeing if it has attachments.