The name of a supported transport; valid options are as follows: * mail - Send using PHP mail function * smtp - Send using SMTP * * You can add custom transports (or override existing transports) by adding the * appropriate file to app/Network/Email. Transports should be named 'YourTransport.php', * where 'Your' is the name of the transport. * * from => * The origin email. See CakeEmail::from() about the valid values * */ class EmailConfig { public $default = array( 'transport' => 'mail', 'from' => 'you@localhost' ); public $smtp = array( 'transport' => 'smtp', 'from' => array('My Site', 'site@localhost'), 'host' => 'localhost', 'port' => 25, 'timeout' => 30, 'username' => 'user', 'password' => 'secret', 'client' => null ); }