选择语言 :

 Core_Email::cc

Set CC

Email Core_Email::cc( string $cc )

参数列表

参数 类型 描述 默认值
$cc string
返回值
  • Email
File: ./core/classes/email.class.php
public function cc($cc)
{
    $cc = $this->clean_email($this->_str_to_array($cc));

    if ($this->validate)
    {
        $this->validate_email($cc);
    }

    $this->set_header('Cc', implode(', ', $cc));

    if ($this->_get_protocol() === 'smtp')
    {
        $this->_cc_array = $cc;
    }

    return $this;
}