Skip to content

Commit f3f6386

Browse files
committed
2FA Auth code email
1 parent 90815b5 commit f3f6386

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ use Proton\Mail\F2aMail;
2222

2323
Route::get('/proton', function () {
2424
// User (required columns: id, name, code)
25-
$user = User::first();
25+
// $user = User::first();
26+
27+
$user = User::factory(1)->make([
28+
'email' => '[email protected]'
29+
])->first();
2630

2731
// Send email sample
2832
Mail::to('[email protected]')->send(new DefaultMail());

0 commit comments

Comments
 (0)