Php 在godaddy共享服务器上配置codeigniter smtp

Php 在godaddy共享服务器上配置codeigniter smtp,php,codeigniter,email,Php,Codeigniter,Email,我已经尝试了下面的代码,并不断得到这个错误 无法使用PHP SMTP发送电子邮件。您的服务器可能未配置为使用此方法发送邮件 我也尝试过:$config['smtp_host']='relay hosting.secureserver.net';请求爸爸的支持 $config['protocol'] = 'smtp'; $config['smtp_host'] = 'mail.keytimeng.com'; //change this $config['smtp_port'] = '25'; $c

我已经尝试了下面的代码,并不断得到这个错误

无法使用PHP SMTP发送电子邮件。您的服务器可能未配置为使用此方法发送邮件


我也尝试过:$config['smtp_host']='relay hosting.secureserver.net';请求爸爸的支持
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'mail.keytimeng.com'; //change this
$config['smtp_port'] = '25';
$config['smtp_user'] = 'info@keytimeng.com'; //change this
$config['smtp_pass'] = 'xxxx'; //change this
$config['mailtype'] = 'html';
$config['charset'] = 'iso-8859-1';
$config['wordwrap'] = TRUE;
$config['newline'] = "\r\n"; 
$this->email->initialize($config);