|
本帖最后由 √__豿艉騲℡ 于 2011-7-18 13:45 编辑
这样写有错吗?
PHP复制代码 $config = array(
'protocol' => 'smtp',
'smtp_host' => 'smtp.qq.com',
'smtp_port' => 25,
'smtp_user' => '87538424',
'smtp_pass' => '123',
'charset' => 'gb2312',
'mailtype' => 'html',
'validate' => true
);
$this->load->library('email', $config);
$this->email->set_newline('\r\n');
$this->email->from('87538424@qq.com', 'Jason');
$this->email->to('87538424@qq.com');
$this->email->subject('测试');
$this->email->message('测试Email');
$this->email->send(); 复制代码 |
|