Php 通过本地服务器发送电子邮件时出错

Php 通过本地服务器发送电子邮件时出错,php,mysql,cakephp-3.0,Php,Mysql,Cakephp 3.0,无法发送电子邮件:mail():无法在“localhost”端口25连接到mailserver,请验证php.ini中的“SMTP”和“SMTP\u端口”设置或使用ini\u集() 您的邮件服务器是否在本地主机上运行:25?是@jhyot''EmailTransport'=>['default'=>['className'=>'Mail',//以下密钥用于SMTP传输'host'=>'localhost','port'=>25','timeout'=>30','username'=>'root'

无法发送电子邮件:mail():无法在“localhost”端口25连接到mailserver,请验证php.ini中的“SMTP”和“SMTP\u端口”设置或使用ini\u集()


您的邮件服务器是否在本地主机上运行:25?是@jhyot''EmailTransport'=>['default'=>['className'=>'Mail',//以下密钥用于SMTP传输'host'=>'localhost','port'=>25','timeout'=>30','username'=>'root','password'=>'','client'=>null',tls'=>true,],],“您的邮件服务器是否在本地主机上运行的可能重复项:25?是@jhyot'EmailTransport'=>[“默认值”=>['className'=>'Mail',//以下密钥用于SMTP传输'host'=>'localhost','port'=>25','timeout'=>30','username'=>'root','password'=>'','client'=>null',tls'=>true,],],'
public function changePassword(){
  if($this->request->is('post')){
    $email->from(['from@domain.com' => 'My Site'])
    ->to('to@domain.com')
    ->subject('About')
    ->send('My message');
  }
}