本文整理汇总了PHP中CI_Email::clear方法的典型用法代码示例。如果您正苦于以下问题:PHP CI_Email::clear方法的具体用法?PHP CI_Email::clear怎么用?PHP CI_Email::clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CI_Email
的用法示例。
在下文中一共展示了CI_Email::clear方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: clear
/**
* Initialize the Email Data
*
* @access public
* @return void
*/
function clear($clear_attachments = FALSE)
{
// patch for bug # 7826
// http://codeigniter.com/bug_tracker/bug/7826/
if ($this->_get_protocol() == "smtp") {
$this->_cc_array = array();
$this->_bcc_array = array();
}
parent::clear($clear_attachments);
}
示例2: clear
public function clear($clear_attachments = FALSE)
{
$clear_attachments = !empty($clear_attachments);
parent::clear($clear_attachments);
if ($this->mailer_engine == 'phpmailer') {
$this->phpmailer->clearAllRecipients();
$this->phpmailer->clearReplyTos();
if ($clear_attachments) {
$this->phpmailer->clearAttachments();
}
$this->phpmailer->clearCustomHeaders();
$this->phpmailer->Subject = '';
$this->phpmailer->Body = '';
$this->phpmailer->AltBody = '';
}
return $this;
}
示例3: clear
/**
* Extends basic CI_Email clear function with app_email clear data.
*/
public function clear()
{
parent::clear();
// empty app_email specifics
$this->_data = array();
}