public function test_see_in_last_email_to(\NoGuy $I)
 {
     $body = 'Hello World!';
     $user = '******';
     $this->mail($user, 'Subject Line', $body, '*****@*****.**');
     $this->mail('*****@*****.**', 'Subject Line', 'Goodbye World!', '*****@*****.**');
     $I->seeInLastEmailTo($user, $body);
 }