|
发表于 2012-5-28 17:29:22
|
显示全部楼层
qq邮箱怎么会连不上呢,试试下面的PHP复制代码 $config = array(
'crlf' => "\r\n",
'newline' => "\r\n",
'charset' => 'utf-8',
'protocol' => 'smtp',
'mailtype' => 'text',
'smtp_host' => 'smtp.qq.com',
'smtp_port' => '25',
'smtp_user' => 'qq号',
'smtp_pass' => 'qq密码'
);
$this->load->library('email', $config);
$this->email->from('qq邮箱', 'Your Name');
$this->email->to('qq邮箱');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
echo $this->email->print_debugger(); 复制代码
|
|