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();
新聞熱點
疑難解答