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