The name of a supported transport; valid options are as follows: * mail - MySQL 4 & 5, * smtp - Send using SMTP * * You can add custom database transports (or override existing transports) by adding the * appropriate file to app/libs/emails. Transports should be named 'x_transport.php', * where 'x' is the name of the transport. * * from => * The origin email. See CakeEmail::to() about the valid values * */ class EMAIL_CONFIG { public $default = array( 'driver' => 'mail', 'from' => 'you@localhost' ); public $smtp = array( 'driver' => 'smtp', 'from' => array('My Site', 'site@localhost'), 'host' => 'localhost', 'port' => 25, 'username' => 'user', 'password' => 'secret' ); }