Fixes for emails; send user registered/pending depending on state

This commit is contained in:
Nabeel Shahzad
2017-12-22 12:46:46 -06:00
parent 74316218bc
commit 161623c85e
42 changed files with 215 additions and 153 deletions

View File

@@ -0,0 +1,8 @@
@component('mail::message')
# Thanks for signing up, {!! $user->name !!}!
You will be notified as soon as your account is approved!
Thanks,<br>
{{ config('app.name') }}
@endcomponent

View File

@@ -0,0 +1,12 @@
@component('mail::message')
# Thanks for signing up, {!! $user->name !!}!
Your account is ready to use.
@component('mail::button', ['url' => url('/login')])
Visit your account now!
@endcomponent
Thanks,<br>
{{ config('app.name') }}
@endcomponent