cc() public method

Alias to set the cc headers
public cc ( string $email, string $name = null ) : Mail
$email string
$name string
return Mail
Beispiel #1
0
 public function testCc()
 {
     $m = new Mail('Subject');
     $m->cc('*****@*****.**', 'Bob Smith');
     $this->assertEquals('Bob Smith <*****@*****.**>', $m->getHeader('Cc'));
     $m->cc(array('*****@*****.**', '*****@*****.**'));
     $this->assertEquals('test@email.com, someone@email.com', $m->getHeader('Cc'));
 }