Codeigniter發(fā)送郵件的方法
本文實(shí)例講述了Codeigniter發(fā)送郵件的方法。分享給大家供大家參考。具體分析如下:
Codeigniter的郵件發(fā)送支持一下特性:
Multiple Protocols: Mail, Sendmail, and SMTP
Multiple recipients
CC and BCCs
HTML or Plaintext email
Attachments
Word wrapping
Priorities
BCC Batch Mode, enabling large email lists to be broken into small BCC batches.
Email Debugging tools
具體代碼如下:
$this->load->library('email'); $this->email->from('w3@w3mentor.com', 'W3M'); $this->email->subject('Email Test'); $this->email->message('Testing the email class IN CODEIGNITER.'); $this->email->send();
希望本文所述對大家基于Codeigniter的php程序設(shè)計有所幫助。
相關(guān)文章
php使用curl和正則表達(dá)式抓取網(wǎng)頁數(shù)據(jù)示例
這篇文章主要介紹了php使用curl和正則表達(dá)式抓取網(wǎng)頁數(shù)據(jù)示例,這里是抓取某網(wǎng)站的小說,需要的朋友可以修改一下抓取其它數(shù)據(jù)2014-04-04解決Linux下php-fpm進(jìn)程過多導(dǎo)致內(nèi)存耗盡問題
這篇文章主要介紹了解決Linux下php-fpm進(jìn)程過多導(dǎo)致內(nèi)存耗盡問題,需要的朋友可以參考下2017-12-12Yii2實(shí)現(xiàn)ActiveForm ajax提交
這篇文章主要 為大家詳細(xì)介紹了Yii2實(shí)現(xiàn)ActiveForm ajax提交的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-05-05yii2實(shí)現(xiàn)Ueditor百度編輯器的示例代碼
這篇文章主要介紹了yii2實(shí)現(xiàn)Ueditor百度編輯器的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-11-11php基于curl擴(kuò)展制作跨平臺的restfule 接口
這篇文章主要介紹了php基于curl擴(kuò)展制作跨平臺的restfule 接口的相關(guān)資料以及詳細(xì)的代碼,有需要的小伙伴可以參考下。2015-05-05