|
发表于 2009-7-15 17:03:27
|
显示全部楼层
本帖最后由 lichaoying 于 2009-7-15 17:10 编辑
以下是我发送邮件的function,相信对你有用:
PHP复制代码
function sendmail (){
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'mail.yncmcc.cn',
'smtp_port' => 25,
'smtp_user' => 'lichao',
'smtp_pass' => '123',
'charset' => 'gb2312',
'mailtype' => 'html',
);
// $config_ssl = Array(
// 'protocol' => 'smtp',
// 'smtp_host' => 'ssl://smtp.gmail.com',
// 'smtp_port' => '465',
// 'smtp_user' => '123@gmail.com',
// 'smtp_pass' => '123',
// 'mailtype' => 'html',
// );
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$from_name = "电路调单";//发件人名称
$email_subject ="调单";
$email_msg="<br>你好!请注意查收!";
//解决乱码问题
$from_name = iconv('UTF-8','GB2312',$from_name);
$email_subject = iconv('UTF-8','GB2312',$email_subject);
$email_msg = iconv('UTF-8','GB2312',$email_msg);
//封装发送信息
$this->email->from('lichao@chinamobile.com',$from_name);
$this->email->to('lichao@chinamobile.com');
$this->email->subject($email_subject);
$this->email->message($email_msg);
$this->email->attach("attachments/2009/01/1.xls");//附件
//发送
if (!$this->email->send())
{
show_error ($this->email->print_debugger());
return false;
}
else
{
echo"发送成功!";
return true;
}
}
复制代码 |
|