Determine which port my exchange service is using for e-mail sending -> cakePhP CakeEmail
问题 I am trying to send mails with cakephp using the smtp protocol. This is my email.php: class EmailConfig { public $smtp = array( 'transport' => 'Smtp', 'from' => array('account@mail.sk' => 'Me'), 'host' => 'ip_address', 'port' => 1234, 'timeout' => 30, 'username' => 'account', 'password' => 'password', /* dont know what these parameters below are for */ 'client' => null, 'log' => true, //'charset' => 'utf-8', //'headerCharset' => 'utf-8', ); This is a function that I use for testing (after