php 使用Codeigniter发送邮件功能实例

内容摘要
这篇文章主要为大家详细介绍了php 使用Codeigniter发送邮件功能实例,具有一定的参考价值,可以用来参考一下。

对php Codeigniter发送邮件对此感兴趣的朋友,看看idc笔记做的技
文章正文

这篇文章主要为大家详细介绍了php 使用Codeigniter发送邮件功能实例,具有一定的参考价值,可以用来参考一下。

对php Codeigniter发送邮件对此感兴趣的朋友,看看idc笔记做的技术笔记!Codeigniter的邮件发送支持一下特性:Multiple Protocols: Mail, Sendmail, and SMTPMultiple recipientsCC and BCCsHTML or Plaintext emailAttachmentsWord wrappingPrioritiesBCC Batch Mode, enabling large email lists to be broken into small BCC batches.Email Debugging tools

/**
 * php Codeigniter发送邮件
 *
 * @param 
 * @arrange 512-笔记网: www.idcnote.com
 **/
$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();
/***   来自php教程(www.idcnote.com)   ***/

注:关于php 使用Codeigniter发送邮件功能实例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!