php实现发送邮件,一般常用的是开源项目PHPMailer来实现,那么除此之外,有什么其他的好的项目吗?
解决方法:
使用SMTP协议来发送邮件吧
在CodeIgniter里面使用它内置的邮件类发送邮件
- $this->load->library('email');
- $to = "aa@bb.cc";
- $subject = "test";
- $message = "hello!";
- $config["protocol"] = "smtp";
- $config["smtp_host"] = "smtp.163.com";
- $config["smtp_user"] = "username@163.com";
- $config["smtp_pass"] = "password";
- $config["mailtype"] = "html";
- $config["validate"] = true;
- $config["priority"] = 3;
- $config["crlf"] = "/r/n";
- $config["smtp_port"] = 25;
- $config["charset"] = "utf-8";
- $config["wordwrap"] = TRUE;
- $this->email->initialize($config);
- $this->email->from('xxxx@163.com', 'xxxx');
- $this->email->to($to);
- $this->email->subject($subject);
- $this->email->message($message);
- $this->email->send();
新闻热点
疑难解答