Typo (ticket #2829)

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5349 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
dho 2007-06-26 06:00:50 +00:00
parent 40a47a5e90
commit 126fac4145

View file

@ -510,7 +510,7 @@ class EmailComponent extends Object{
fputs($smtpConnect, "MAIL FROM: {$this->smtpOptions['from']}" . $this->_newLine);
fputs($smtpConnect, "RCPT TO: {$this->to}" . $this->_newLine);
fputs($smtpConnect, "DATE" . $this->_newLine);
fputs($smtpConnect, "To: {$this->to}\r\nFrom: {$this->smtpOptions['from']}\r\n{$thos->subject}\r\n{$this->__header}\r\n\r\n{$this->__message}\r\n");
fputs($smtpConnect, "To: {$this->to}\r\nFrom: {$this->smtpOptions['from']}\r\n{$this->subject}\r\n{$this->__header}\r\n\r\n{$this->__message}\r\n");
fputs($smtpConnect, "QUIT" . $this->_newLine);
fclose($smtpConnect);
}