/**
  * @expectedException InvalidArgumentException
  */
 public function test_it_only_accepts_a_correct_email_as_from()
 {
     $mail = new Mail();
     $mail->setFrom('test909c.fr');
 }