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