$config['protocol'] = 'smtp';
$config['smtp_host'] = 'smtp_host';
$config['smtp_port'] = 25;
$config['smtp_user'] = 'smtp_user';
$config['smtp_pass'] = '$$$';
$this->load->library('email', $config);
$this->email->initialize($config);
$this->email->from($config['smtp_user']);
$this->email->to('aaaa@test.com');
$this->email->subject('TEST MAIL');
$this->email->message('TESTING OF MAIL');
if ($this->email->send()) {
return true;
} else {
return false;
}
这是我发送电子邮件的代码。我得到了以下错误。
消息:fsockopen():无法连接到box334.bluehost.com:25(连接尝试失败,因为连接方未正确 一段时间后回复,或建立连接失败 因为连接的主机无法响应。 )
答案 0 :(得分:0)
您的电子邮件服务器没有正确响应。尝试检查您的电子邮件服务器设置,如smtp PORT,SMTP HOST和USER等。