public function testSenderIsRequired()
 {
     $this->setExpectedException('RuntimeException');
     $mail = new Mail();
     $mail->setTo('*****@*****.**')->setSubject('Email sent via. Dyn SDK')->setBody('The text of the email');
     $result = $this->mm->send($mail);
 }