CodeIgniter 發(fā)送電子郵件

codeigniter 發(fā)送電子郵件

 

在 codeigniter 中發(fā)送電子郵件要容易得多。您還可以在 codeigniter 中配置有關(guān)電子郵件的首選項(xiàng)。 codeigniter 提供以下發(fā)送電子郵件的功能:

 

  • 多種協(xié)議-郵件、sendmail 和 smtp
  • 用于 smtp 的 tls 和 ssl 加密
  • 多個(gè)收件人
  • 抄送和密件抄送
  • html 或純文本電子郵件
  • 附件
  • 自動(dòng)換行
  • 優(yōu)先事項(xiàng)
  • 密件抄送批處理模式,可將大型電子郵件列表分解為小型密件抄送批次。
  • 電子郵件調(diào)試工具

 

email 類具有以下功能以簡(jiǎn)化發(fā)送電子郵件的工作。

語(yǔ)法 parameters returns return type
from($from[, $name = ''[, $return_path = null]])

$from ( string)-"發(fā)件人"電子郵件地址

$name ( string) ? "發(fā)件人"顯示名稱

$return_path ( string) ? 可選電子郵件地址,用于重定向未送達(dá)的電子郵箱郵寄到

ci_email 實(shí)例(方法鏈) ci_email
reply_to($replyto[, $name = ''])

$replyto ( string)-回復(fù)的電子郵件地址

$name ( string)-回復(fù)電子郵件地址的顯示名稱

ci_email 實(shí)例(方法鏈) ci_email
to($to)

$to ( mixed)-逗號(hào)分隔的字符串或電子郵件地址數(shù)組

ci_email 實(shí)例(方法鏈) ci_email
cc($cc)

$cc ( mixed)-逗號(hào)分隔的字符串或電子郵件地址數(shù)組

ci_email 實(shí)例(方法鏈) ci_email
bcc($bcc[, $limit = ''])

$bcc ( mixed)-逗號(hào)分隔的字符串或電子郵件地址數(shù)組

$limit ( int)-每批發(fā)送的最大電子郵件數(shù)量

ci_email 實(shí)例(方法鏈) ci_email
subject($subject)

$subject ( string)-電子郵件主題行

ci_email 實(shí)例(方法鏈) ci_email
message($body)

$body ( string) ? 電子郵件正文

ci_email 實(shí)例(方法鏈) ci_email
set_alt_message($str)

$str ( string)-替代電子郵件正文

ci_email 實(shí)例(方法鏈) ci_email
set_header($header, $value)

$header ( string) ? 標(biāo)題名稱

$value ( string)-標(biāo)題值

ci_email 實(shí)例(方法鏈) ci_email
clear([$clear_attachments = false])

$clear_attachments ( bool) – 是否清除附件

ci_email 實(shí)例(方法鏈) ci_email
send([$auto_clear = true])

$auto_clear ( bool) ? 是否自動(dòng)清除消息數(shù)據(jù)

ci_email 實(shí)例(方法鏈) ci_email
attach($filename[, $disposition = ''[, $newname = null[, $mime = '']]])

$filename ( string) ? 文件名

$disposition ( string)-附件的"處置"。無(wú)論此處使用的 mime 規(guī)范如何,大多數(shù)電子郵件客戶端都會(huì)做出自己的決定。 iana

$newname ( string)-在電子郵件中使用的自定義文件名

$mime ( string)-要使用的 mime 類型(用于緩沖數(shù)據(jù))

ci_email 實(shí)例(方法鏈) ci_email
attachment_cid($filename)

$filename ( string) ? 現(xiàn)有附件文件名

附件 content-id 或 false(如果未找到) 字符串

 

發(fā)送電子郵件

要使用 codeigniter 發(fā)送電子郵件,首先您必須使用以下命令加載電子郵件庫(kù):

$this->load->library('email');

加載庫(kù)后,只需執(zhí)行以下函數(shù)即可設(shè)置發(fā)送電子郵件所需的元素。 from() 函數(shù)用于設(shè)置-從哪里發(fā)送電子郵件和 to() 函數(shù)用于設(shè)置-電子郵件將發(fā)送給誰(shuí)。 subject() 和 message() 函數(shù)用于設(shè)置電子郵件的主題和消息。

$this->email->from('your@example.com', 'your name');
$this->email->to('someone@example.com');
 
$this->email->subject('email test');
$this->email->message('testing the email class.');

之后,執(zhí)行如下所示的 send()函數(shù)來(lái)發(fā)送電子郵件。

$this->email->send();

 

示例

創(chuàng)建控制器文件 email_controller.php 并將其保存在 application/controller/email_controller.php 中。

 
   class email_controller extends ci_controller { 
 
      function __construct() { 
         parent::__construct(); 
         $this--->load->library('session'); 
         $this->load->helper('form'); 
      } 
    
      public function index() { 
  
         $this->load->helper('form'); 
         $this->load->view('email_form'); 
      } 
  
      public function send_mail() { 
         $from_email = "your@example.com"; 
         $to_email = $this->input->post('email'); 
   
         //load email library 
         $this->load->library('email'); 
   
         $this->email->from($from_email, 'your name'); 
         $this->email->to($to_email);
         $this->email->subject('email test'); 
         $this->email->message('testing the email class.'); 
   
         //send mail 
         if($this->email->send()) 
         $this->session->set_flashdata("email_sent","email sent successfully."); 
         else 
         $this->session->set_flashdata("email_sent","error in sending email."); 
         $this->load->view('email_form'); 
      } 
   } 
?>

創(chuàng)建一個(gè)名為 email_form.php 的視圖文件并將其保存在 application/views/email_form.php

 
 
    
       
      codeigniter email example 
   
  
    
       
         echo $this--->session->flashdata('email_sent'); 
         echo form_open('/email_controller/send_mail'); 
      ?> 
    
       
       
    
       
         echo form_close(); 
       
   
  

在 application/config/routes.php 中的 routes.php 文件中進(jìn)行更改,并在文件末尾添加以下行。

$route['email'] = 'email_controller';

通過(guò)訪問(wèn)以下鏈接執(zhí)行上述示例。將 yoursite.com 替換為您網(wǎng)站的網(wǎng)址。

http://yoursite.com/index.php/email

下一節(jié):codeigniter 表單驗(yàn)證

codeigniter 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频