コード例 #1
0
ファイル: EmailTest.php プロジェクト: brash-creative/sendgrid
 public function testSetTos()
 {
     $email = new Email();
     $email->setTos(array('*****@*****.**', '*****@*****.**'));
     $this->assertEquals(array('*****@*****.**', '*****@*****.**'), $email->getTos());
 }