From 1ee8ad6d8e310f9a47cf48b68788490cc16d01ea Mon Sep 17 00:00:00 2001 From: Juan Basso Date: Sun, 17 Apr 2011 11:26:50 -0400 Subject: [PATCH] Removed more unused code. --- lib/Cake/Controller/Component/EmailComponent.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/lib/Cake/Controller/Component/EmailComponent.php b/lib/Cake/Controller/Component/EmailComponent.php index de3e808c12a..b7a6aa836d8 100644 --- a/lib/Cake/Controller/Component/EmailComponent.php +++ b/lib/Cake/Controller/Component/EmailComponent.php @@ -239,15 +239,6 @@ class EmailComponent extends Component { */ public $smtpOptions = array(); -/** - * Placeholder for any errors that might happen with the - * smtp mail methods - * - * @var string - * @access public - */ - public $smtpError = null; - /** * Contains the rendered plain text message if one was sent. * @@ -376,14 +367,10 @@ public function reset() { $this->subject = null; $this->additionalParams = null; $this->date = null; - $this->smtpError = null; $this->attachments = array(); $this->htmlMessage = null; $this->textMessage = null; $this->messageId = true; - $this->_header = array(); - $this->_boundary = null; - $this->_message = array(); } /**