* Stopped inheritance errors popping up * Added fillable fields These would not save otherwise. * Added country fillable field Wouldn’t save when importing from phpvms classic. * Added more to classic importer Change arguments to ask in terminal Fixed table_prefix names in Importer.php Added the ability to import users from phpvms classic (tested on simpilot’s 5.5.x) and when importing, it will then reset the user’s password to a temporary hash and then email it to the user to then change when they first log in. * Changes to ImporterService
18 lines
513 B
PHP
18 lines
513 B
PHP
@component('mail::message')
|
|
Your new login details for {{ config('app.name') }} follow:
|
|
|
|
Do not share this information with anyone else! <br />
|
|
<strong>E-Mail Address:</strong> {!! $user->email !!}<br />
|
|
<strong>Temporary Password:</strong> {!! $newpw !!}<br /><br />
|
|
|
|
Your account is now ready for use.<br />
|
|
Upon first login, please reset your password.
|
|
|
|
@component('mail::button', ['url' => url('/login')])
|
|
Login & Reset Password
|
|
@endcomponent
|
|
|
|
Thanks,<br />
|
|
Management, {{ config('app.name') }}
|
|
@endcomponent
|