Example #1
0
 public function test_that_it_can_set_and_get_bcc_address()
 {
     $bccAddress = '*****@*****.**';
     $bccName = 'BCC';
     $this->message->addBcc($bccAddress, $bccName);
     $bcc = $this->message->getBcc();
     $this->assertTrue($bccAddress === $bcc[0]['address'] && $bccName === $bcc[0]['name']);
 }