diff --git a/resources/views/emails/accounts/test_mail.blade.php b/resources/views/emails/accounts/test_mail.blade.php new file mode 100644 index 00000000..d58806d7 --- /dev/null +++ b/resources/views/emails/accounts/test_mail.blade.php @@ -0,0 +1,11 @@ +@extends('emails.accounts.layout.base') + +@section('content') +

Hello,

+

verify your email to finish your account registration on

+

Please confirm that is your email address by clicking on the button below or use this link within 48 hours

+
+ +
+
If you didn't perform this request you can safely ignore this email.
+@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 44158d98..f28aa99f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1,6 +1,7 @@ $marking]); })->name('booking.merge'); -Route::get('/clock', function () { - dd(Carbon::now()); +Route::get('/mail', function () { + + Mail::send('emails.echo', [], function($message) + { + $message->to('uldvstar@example.com', 'Omair Saleh')->subject('Welcome!'); + }); + + return 'working'; });