选择语言 :

 Core_Email::clear

Initialize the Email Data

Email Core_Email::clear( [ bool $clear_attachments = bool false ] )

参数列表

参数 类型 描述 默认值
$clear_attachments bool bool false
返回值
  • Email
File: ./core/classes/email.class.php
public function clear($clear_attachments = false)
{
    $this->_subject        = '';
    $this->_body           = '';
    $this->_finalbody      = '';
    $this->_header_str     = '';
    $this->_replyto_flag   = false;
    $this->_recipients     = array();
    $this->_cc_array       = array();
    $this->_bcc_array      = array();
    $this->_headers        = array();
    $this->_debug_msg      = array();

    $this->set_header('User-Agent', $this->useragent);
    $this->set_header('Date', $this->_set_date());

    if ($clear_attachments !== false)
    {
        $this->_attach_name = array();
        $this->_attach_type = array();
        $this->_attach_disp = array();
    }

    return $this;
}