Skip to content

Commit

Permalink
Moved the CakeEmail to Network/Email. Now this class have similar str…
Browse files Browse the repository at this point in the history
…ucture of HttpSocket.
  • Loading branch information
jrbasso committed Apr 27, 2011
1 parent df57b15 commit 1523ff6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/EmailComponent.php
Expand Up @@ -19,7 +19,7 @@

App::uses('Component', 'Controller');
App::uses('Multibyte', 'I18n');
App::uses('CakeEmail', 'Network');
App::uses('CakeEmail', 'Network/Email');

/**
* EmailComponent
Expand Down
File renamed without changes.
Expand Up @@ -16,7 +16,7 @@
* @since CakePHP(tm) v 2.0.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('CakeEmail', 'Network');
App::uses('CakeEmail', 'Network/Email');

/**
* Help to test CakeEmail
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/tests/Case/Network/Email/SmtpTransportTest.php
Expand Up @@ -16,7 +16,7 @@
* @since CakePHP(tm) v 2.0.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('CakeEmail', 'Network');
App::uses('CakeEmail', 'Network/Email');
App::uses('AbstractTransport', 'Network/Email');
App::uses('SmtpTransport', 'Network/Email');

Expand Down

0 comments on commit 1523ff6

Please sign in to comment.