CodeIgniter 郵件輔助函數(shù)

2018-07-21 15:43 更新

郵件輔助函數(shù)

郵件輔助函數(shù)文件包含了用于處理郵件的一些函數(shù)。欲了解關于郵件更全面的解決方案, 可以參考 CodeIgniter 的 Email 類 。

重要
不鼓勵繼續(xù)使用郵件輔助函數(shù),這個庫當前僅是為了向前兼容而存在。

加載輔助函數(shù)

該輔助函數(shù)通過下面的代碼加載:

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

可用函數(shù)

該輔助函數(shù)有下列可用函數(shù):

valid_email($email)

參數(shù):

  • $email (string) -- E-mail address

返回: TRUE if a valid email is supplied, FALSE otherwise

返回類型: bool

檢查 Email 地址格式是否正確,注意該函數(shù)只是簡單的檢查它的格式是否正確, 并不能保證該 Email 地址能接受到郵件。

Example:

if (valid_email('email@somesite.com'))
{
    echo 'email is valid';
}
else
{
    echo 'email is not valid';
}

注解

該函數(shù)實際上就是調用 PHP 原生的 filter_var() 函數(shù)而已:

(bool) filter_var($email, FILTER_VALIDATE_EMAIL);

send_email($recipient, $subject, $message)

參數(shù):

  • $recipient (string) -- E-mail address
  • $subject (string) -- Mail subject
  • $message (string) -- Message body

返回: TRUE if the mail was successfully sent, FALSE in case of an error

返回類型: bool

使用 PHP 函數(shù) mail() 發(fā)送郵件。

注解

該函數(shù)實際上就是調用 PHP 原生的 mail() 函數(shù)而已

mail($recipient, $subject, $message);

欲了解關于郵件更全面的解決方案,可以參考 CodeIgniter 的 Email 類 。

以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號