我一直在尝试使用 CakePHP (CakeMail) 向 Microsoft Exchange 2010 Server 发送电子邮件的几个配置选项。这是我目前的配置:
public $default = array(
'transport' => 'Smtp',
'from' => array('email@example.com' => 'Me'),
'host' => 'smtp.ex3.secureserver.net',
'port' => 587,
'timeout' => 30,
'username' => 'verifiedUserName',
'password' => 'verifiedPassword',
'client' => null,
'log' => true,
'delivery' => 'smtp'
);
这是我的测试功能:
public function test_email() {
App::uses('CakeEmail', 'Network/Email');
$email = new CakeEmail();
$email->config('default');
debug($email->config());
$result = $email->template('checkout')
->from('email@example.com')
->emailFormat('text')
->to('another@example.com')
->subject('TEST EMAIL ')
->send();
}
我得到一个
SMTP Error: 504 5.7.4 Unrecognized authentication type
如果我将主机更改为 'ssl://smtp.ex3.secureserver.net' 或 'tls://smtp.ex3.secureserver.net' 我会得到一个
Unable to connect to SMTP server.
服务器配置为使用 TLS。
有任何想法吗 ?