codeigniter 發送電子郵件
在 codeigniter 中發送電子郵件要容易得多。您還可以在 codeigniter 中配置有關電子郵件的首選項。 codeigniter 提供以下發送電子郵件的功能:
- 多種協議-郵件、sendmail 和 smtp
- 用于 smtp 的 tls 和 ssl 加密
- 多個收件人
- 抄送和密件抄送
- html 或純文本電子郵件
- 附件
- 自動換行
- 優先事項
- 密件抄送批處理模式,可將大型電子郵件列表分解為小型密件抄送批次。
- 電子郵件調試工具
email 類具有以下功能以簡化發送電子郵件的工作。
語法 | parameters | returns | return type |
from($from[, $name = ''[, $return_path = null]]) |
$from ( string)-"發件人"電子郵件地址 $name ( string) ? "發件人"顯示名稱 $return_path ( string) ? 可選電子郵件地址,用于重定向未送達的電子郵箱郵寄到 |
ci_email 實例(方法鏈) | ci_email |
reply_to($replyto[, $name = '']) |
$replyto ( string)-回復的電子郵件地址 $name ( string)-回復電子郵件地址的顯示名稱 |
ci_email 實例(方法鏈) | ci_email |
to($to) |
$to ( mixed)-逗號分隔的字符串或電子郵件地址數組 |
ci_email 實例(方法鏈) | ci_email |
cc($cc) |
$cc ( mixed)-逗號分隔的字符串或電子郵件地址數組 |
ci_email 實例(方法鏈) | ci_email |
bcc($bcc[, $limit = '']) |
$bcc ( mixed)-逗號分隔的字符串或電子郵件地址數組 $limit ( int)-每批發送的最大電子郵件數量 |
ci_email 實例(方法鏈) | ci_email |
subject($subject) |
$subject ( string)-電子郵件主題行 |
ci_email 實例(方法鏈) | ci_email |
message($body) |
$body ( string) ? 電子郵件正文 |
ci_email 實例(方法鏈) | ci_email |
set_alt_message($str) |
$str ( string)-替代電子郵件正文 |
ci_email 實例(方法鏈) | ci_email |
set_header($header, $value) |
$header ( string) ? 標題名稱 $value ( string)-標題值 |
ci_email 實例(方法鏈) | ci_email |
clear([$clear_attachments = false]) |
$clear_attachments ( bool) – 是否清除附件 |
ci_email 實例(方法鏈) | ci_email |
send([$auto_clear = true]) |
$auto_clear ( bool) ? 是否自動清除消息數據 |
ci_email 實例(方法鏈) | ci_email |
attach($filename[, $disposition = ''[, $newname = null[, $mime = '']]]) |
$filename ( string) ? 文件名 $disposition ( string)-附件的"處置"。無論此處使用的 mime 規范如何,大多數電子郵件客戶端都會做出自己的決定。 iana $newname ( string)-在電子郵件中使用的自定義文件名 $mime ( string)-要使用的 mime 類型(用于緩沖數據) |
ci_email 實例(方法鏈) | ci_email |
attachment_cid($filename) |
$filename ( string) ? 現有附件文件名 |
附件 content-id 或 false(如果未找到) | 字符串 |
發送電子郵件
要使用 codeigniter 發送電子郵件,首先您必須使用以下命令加載電子郵件庫:
$this->load->library('email');
加載庫后,只需執行以下函數即可設置發送電子郵件所需的元素。 from() 函數用于設置-從哪里發送電子郵件和 to() 函數用于設置-電子郵件將發送給誰。 subject() 和 message() 函數用于設置電子郵件的主題和消息。
$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.');
之后,執行如下所示的 send()函數來發送電子郵件。
$this->email->send();
示例
創建控制器文件 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'); } } ?>
創建一個名為 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 文件中進行更改,并在文件末尾添加以下行。
$route['email'] = 'email_controller';
通過訪問以下鏈接執行上述示例。將 yoursite.com 替換為您網站的網址。
http://yoursite.com/index.php/email